标签:style blog color io strong div cti html
事件冒泡
事件捕获
dom事件流
事件处理程序
但是这个兼容好像并不是特别好
<body id=‘body‘> <div> <button id="text">去空白</button> </div> </body>
//chrome true->‘BODY‘,‘BUTTON‘ /false ->‘BUTTON‘,‘BODY‘ //IE9 true/false ->‘BODY‘ //IE8 报错 document.getElementById("body").addEventListener(‘click‘,function(e) { alert(this.nodeName); },false);
document.getElementById("body").attachEvent(‘onclick‘, function(e) { alert(this.nodeType); //ie几下都是弹一次underfined });
还可以多研究一下
标签:style blog color io strong div cti html
原文地址:http://www.cnblogs.com/cjy1993/p/3928929.html