script指令碼中寫不寫$(document).ready(function() {});的區別

來源:互聯網
上載者:User

標籤:style   blog   java   io   2014   re   c   問題   

$(document).ready() 裡的代碼是在頁面內容都載入完才執行的,如果把代碼直接寫到script標籤裡,當頁面載入完這個script標籤就會執行裡邊的代碼了,此時如果你標籤裡執行的代碼調用了當前還沒載入過來的代碼或者dom,那麼就會報錯,當然如果你把script標籤放到頁面最後面那麼就沒問題了,此時和ready效果一樣。

$(document).ready(function(){})可以簡寫成$(function(){});


點擊段落後,此段落隱藏:

<html><head><script type="text/javascript" src="jquery.js"></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> 



聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.