addEventListener和attachEvent
生活随笔
收集整理的這篇文章主要介紹了
addEventListener和attachEvent
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
ie addEventListener attachEvent
ie9以下(不包括ie9)不支持addEventListener且報錯;
ie9-ie10既支持addEventListener也支持attachEvent;
ie11已經不支持attachEvent且報錯;
舉例說明兩者的用法
<input type="button" id="btn" value="按鈕1"/> <script>var btn = document.getElementById('btn');btn.addEventListener('click',function(){console.log(1, this);});btn.attachEvent('onclick',function(){console.log(2,this);});</script>總結
以上是生活随笔為你收集整理的addEventListener和attachEvent的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: camera hardware modu
- 下一篇: npm 依赖包管理