有什么不同
$(document).ready(function(){
//my code here
});
而且
$(window).load(function(){
//my code here
});
我想确保:
$(document).ready(function(){
})
而且
$(function(){
});
而且
jQuery(document).ready(function(){
});
都是一样的。
你能告诉我它们之间有什么异同吗?