Javascript事件註冊機制

來源:互聯網
上載者:User

Javascript的幾種事件註冊機制

1.直接綁定在元素上。這樣的缺點是結構和行為沒有分離,不符合w3c的標準。優點是,寫著方便(但是多了就不方便了)。

1 <p id="para" title="cssrain demo!" onclick="test()" >test</p>2 <script>3 function test(){4 alert("test");5 }6 </script> 

2.結構和行為分離

1 <p id="para" title="cssrain demo!">test</p>2 <script>3 function test(){4 alert("test");5 }6 window.onload = function(){7 document.getElementById("para").onclick = test;8 }9 </script> 

3.給一個元素繫結多個事件

 1 <p id="para" title="cssrain demo!">test</p>  2 <script>  3 function test(){  4 alert("test");  5 }  6  7 function pig(){  8 alert("pig");  9 } 10 11 window.onload = function(){ 12 document.getElementById("para").onclick = test; 13 document.getElementById("para").onclick = pig; 14 } 15 </script> 

如果按照上面的寫法,我們只能輸出第二個函數。 這時候我們需要用到attachEvent方法:

 1 <p id="para" title="cssrain demo!">test</p>  2 <script>  3 function test(){  4 alert("test");  5 }  6  7 function pig(){  8 alert("pig");  9 } 10 11 window.onload = function(){ 12 document.getElementById("para").attachEvent("onclick",test); 13 document.getElementById("para").attachEvent("onclick",pig); 14 } 15 </script> 

相容firefox

 1 <p id="para" title="cssrain demo!">test</p>  2 <script>  3 function test(){  4 alert("test");  5 }  6  7 function pig(){  8 alert("pig");  9 } 10 11 window.onload = function(){ 12 var element = document.getElementById("para"); 13 if(element.addEventListener){ // firefox , w3c 14 element.addEventListener("click",test,false); 15 element.addEventListener("click",pig,false); 16 } else { // ie 17 element.attachEvent("onclick",test); 18 element.attachEvent("onclick",pig); 19 } 20 } 21 </script> 

js事件註冊的相關文章:

http://blog.csdn.net/lynnlin1122/article/details/3477818

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.