我认为您可能将Javascript与jQuery方法混淆了。香草或纯Javascript类似于:function example() {}可以随时随地调用具有这种性质的功能。jQuery(基于Javascript构建的库)具有内置的函数,这些函数通常需要在调用DOM之前完全呈现DOM。完成此操作的语法为:$(document).ready(function() {});因此,通常在该方法中调用jQuery函数(通常以$或单词作为前缀)jQuery。$(document).ready(function() { // Assign all list items on the page to be the color red. // This does not work until AFTER the entire DOM is "ready", hence the $(document).ready() $('li').css('color', 'red'); });该块的伪代码为:$(document)准备好文档对象模型后.ready(),调用以下函数function() { }。在该函数中,检查<li>页面上的所有内容,$('li')然后使用jQuery方法.CSS()将CSS属性“ color”设置为值“ red”.css('color', 'red');