当DOM(Document对象模型)准备好执行JavaScript代码时,将执行以下代码。$(document).ready(function(){ // Write code here}); 以上代码的简写是:$(function(){ // write code here});下面显示的代码是一个自我调用的匿名JavaScript函数,一旦浏览器解释它就会执行:(function(){ //write code here})(); // It is the parenthesis here that call the function.下面显示的jQuery自调用函数将全局jQuery对象作为参数传递给function($)。这使得$可以在自调用函数中本地使用,而无需遍历定义的全局范围。jQuery不是唯一可以使用的库$,因此可以减少潜在的命名冲突。(function($){ //some code})(jQuery);