第一种写法 $(document).ready(function () { // alert("hello lnj"); }); 第二种写法 jQuery(document).ready(function () { // alert("hello lnj"); }); 第三种写法(推荐) $(function () { // alert("hello lnj"); }); 第四种写法 jQuery(function () { alert("hello lnj"); });