在我们的实例中的所有 jQuery 函数位于一个 document ready 函数中:
$(document).ready(function(){ --- jQuery functions go here ---- });
这是指文档在完全加载(就绪)之后运行 jQuery 代码。
在我们的实例中的所有 jQuery 函数位于一个 document ready 函数中:
$(document).ready(function(){ --- jQuery functions go here ---- });
这是指文档在完全加载(就绪)之后运行 jQuery 代码。