下面是目前本人知道的几种jQuery的ready ()的写法.如果还有其他的写法,望告知 1.最常用也是最标准的 $(document).ready(){
});
$(function(){
})
// jQuery的构造函数; var jQuery = function( a, c ) { // $(document).ready()的简写形式,只有在$(function(){...})下才会执行; if ( a && typeof a == "function" && jQuery.fn.ready ) return jQuery(document).ready(a); // 确保参数a非空,默认值为document; a = a || jQuery.context || document;
jQuery(document).ready(function(){
});
jQuery(function($){
alert($("#ready1").html()); });
jQuery.noConflict();
jQuery(function($){ alert($("#ready1").html()); //我们又能用上$符号了 });
|