$(document).ready() 里的代碼是在頁面內容都加載完才執行的,如果把代碼直接寫到script標簽里,當頁面加載完這個script標簽就會執行里邊的代碼了,此時如果你標簽里執行的代碼調用了當前還沒加載過來的代碼或者dom,那么就會報錯,當然如果你把script標簽放到頁面最后面那么就沒問題了,此時和ready效果一樣。
$(document).ready(function(){})可以簡寫成$(function(){});
點擊段落后,此段落隱藏:
<html><head><script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script><script type="text/javascript">$(document).ready(function(){ $("p").click(function(){ $(this).hide(); });});</script></head><body> <p>If you click on me, I will disappear.</p></body></html>
如果把$(document).ready(function() {});去掉后,無法隱藏段落:
<html><head><script type="text/javascript" src="jquery.js"></script><script type="text/javascript"> $("p").click(function(){ $(this).hide(); });</script></head><body> <p>If you click on me, I will disappear.</p></body></html>
但是把script放到頁面最后的話,就可恢復隱藏效果:
<html><head></head><body> <p>If you click on me, I will disappear.</p></body><script type="text/javascript" src="jquery-1.7.2.min.js"></script><script type="text/javascript"> $("p").click(function(){ $(this).hide(); });</script></html>
總結:
$(document).ready 里的代碼是在頁面內容都加載完才執行的,你直接寫到script標簽里,當頁面加載完這個script標簽就會執行里邊的代碼了,如果你標簽里執行的代碼調用了當前還沒加載過來的代碼或者dom,那么就會報錯,
當然如果你把script標簽當到頁面最后面那么就沒問題了和ready差不多的效果
新聞熱點
疑難解答