JAVASCRIPT綁定事件

來源:互聯網
上載者:User

轉自:http://hi.baidu.com/thenatureofspaceandtime/blog/item/c4ab61f4e842ca6ddcc4742f.html

簡單的綁定時間 似乎只能在第一次載入的時候才有效果
document.getElementById('yourHTMLelement').onclick = haha;
function haha(){
    alert("CLEOPATRA");
}
如果傳遞參數 那麼是醬字的
document.getElementById("yourHTMLelement").onclick = haha("your input");
function haha(content){
    alert(content);
}
這種方法在第一次載入的時候就會執行1次 以後就沒有效果了

對於IE版本6 (證實)
document.getElementById("yourHTMLelement").attactEvent /*(應為attachEvent,think8848注)*/("onclick",
new Function("_blackorwhite(' your input ');"));
function _blackorwhite(content){
    alert(content);
}
attactevent(同上,think8848注)方法在載入此語句的時候不會被執行 是真正的綁定 只有在啟動並執行時候才會被執行EXCELLENT
對於MOZILLA

document.getElementById("yourHTMLelement").addEventListener("onclick",_blackorwhite,false);
function _blackorwhite(){
     alert("你注意到不同了嗎?");
}

需要注意的是 關鍵的1點 在MOZILLA下面 事件不能有參數設定,如果你傳遞參數, 事件會在載入的時候就去執行而不是到響應動作發生時才執行 這1點非常令人不滿意。可能的解決辦法 MOZILLA可以知道是誰觸發的此事件 這樣相應的傳遞的參數就可以由事件觸發者通過某種途徑知道了

相關文章

聯繫我們

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