juquery源码研究:addEventListener与attachEvent区别

简介: 先测试下: debugger if(!window.attachEvent && window.addEventListener) { Window.prototype.attachEvent = HTMLDocument.prototype.attachEvent= HTMLElement.prototype.attachEvent=fu

先测试下:

debugger
   if(!window.attachEvent && window.addEventListener) 
   { 
   Window.prototype.attachEvent = HTMLDocument.prototype.attachEvent= 
   HTMLElement.prototype.attachEvent=function(en, func, cancelBubble) 
   { 
   var cb = cancelBubble ? true : false; 
   this.addEventListener(en.toLowerCase().substr(2), func, cb); 
   }; 
   }
   window.onload=function(){ 
   var outDiv = document.getElementById("outDiv");
   var middleDiv = document.getElementById("middleDiv");
   var inDiv = document.getElementById("inDiv");
   var info = document.getElementById("info");

    /* outDiv.addEventListener("click", function () { info.innerHTML += "outDiv" + "<br>"; }, false);
   middleDiv.addEventListener("click", function () { info.innerHTML += "middleDiv" + "<br>"; }, false);
   inDiv.addEventListener("click", function () { info.innerHTML += "inDiv" + "<br>"; }, false); */
   
    outDiv.attachEvent("onclick", function () { info.innerHTML += "outDiv" + "<br>"; }, false);
   middleDiv.attachEvent("onclick", function () { info.innerHTML += "middleDiv" + "<br>"; }, false);
   inDiv.attachEvent("onclick", function () { info.innerHTML += "inDiv" + "<br>"; }, false);
    
   }

<div id="outDiv">
   <div id="middleDiv">
     <div id="inDiv">请在此点击鼠标。</div>
   </div>
</div>


<div id="info"></div>


结果:inDiv
middleDiv
outDiv


区别说明

1、
cancelBubble=false
 addEventListener执行事件冒泡顺序由内到外。
<span style="line-height: 1.5; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 12pt;">true 的触发顺序总是在 false 之前;</span><br style="font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;font-size:12px; line-height: 19.5px;" /><span style="line-height: 1.5; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 12pt;">如果多个均为 true,则外层的触发先于内层;</span><br style="font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;font-size:12px; line-height: 19.5px;" /><span style="line-height: 1.5; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 12pt;">如果多个均为 false,则内层的触发先于外层。</span>
<span style="font-size: 12pt; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; line-height: 19.5px; background-color: rgb(255, 255, 255);">
</span>
<span style="font-size: 12pt; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; line-height: 19.5px; background-color: rgb(255, 255, 255);">2、适应的浏览器版本不同</span>

attachEvent方法适用于IE    addEventListener方法适用于FF

3、针对的事件不同

attachEvent中的事件带on   而addEventListener中的事件不带on


那么jquery源码这2个事件又如何兼容的呢?

bindReady: function() {
		if ( readyList ) {
			return;
		}

		readyList = jQuery.Callbacks( "once memory" );

		// Catch cases where $(document).ready() is called after the
		// browser event has already occurred.
		if ( document.readyState === "complete" ) {
			// Handle it asynchronously to allow scripts the opportunity to delay ready
			return setTimeout( jQuery.ready, 1 );
		}

		// Mozilla, Opera and webkit nightlies currently support this event
		if ( document.addEventListener ) {
			// Use the handy event callback
			document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false );

			// A fallback to window.onload, that will always work
			window.addEventListener( "load", jQuery.ready, false );

		// If IE event model is used
		} else if ( document.attachEvent ) {
			// ensure firing before onload,
			// maybe late but safe also for iframes
			document.attachEvent( "onreadystatechange", DOMContentLoaded );

			// A fallback to window.onload, that will always work
			window.attachEvent( "onload", jQuery.ready );

			// If IE and not a frame
			// continually check to see if the document is ready
			var toplevel = false;

			try {
				toplevel = window.frameElement == null;
			} catch(e) {}

			if ( document.documentElement.doScroll && toplevel ) {
				doScrollCheck();
			}
		}
	}
// The DOM ready check for Internet Explorer
function doScrollCheck() {
<span style="white-space:pre">	</span>if ( jQuery.isReady ) {
<span style="white-space:pre">		</span>return;
<span style="white-space:pre">	</span>}


<span style="white-space:pre">	</span>try {
<span style="white-space:pre">		</span>// If IE is used, use the trick by Diego Perini
<span style="white-space:pre">		</span>// http://javascript.nwbox.com/IEContentLoaded/
<span style="white-space:pre">		</span>document.documentElement.doScroll("left");
<span style="white-space:pre">	</span>} catch(e) {
<span style="white-space:pre">		</span>setTimeout( doScrollCheck, 1 );
<span style="white-space:pre">		</span>return;
<span style="white-space:pre">	</span>}


<span style="white-space:pre">	</span>// and execute any waiting functions
<span style="white-space:pre">	</span>jQuery.ready();
}
 
 

这里 bindReady

作为事件绑定对象进行处理了。。。。。

目录
相关文章
|
8月前
|
JavaScript 前端开发
js开发:请解释事件冒泡和事件捕获。
JavaScript中的事件处理有冒泡和捕获两种方式。事件冒泡是从子元素向上级元素传递,而事件捕获则从外层元素向内层传递。`addEventListener`的第三个参数可设定事件模式,`false`或不设为冒泡,`true`为捕获。示例代码展示了如何设置。
57 2
|
3月前
|
JavaScript 前端开发
事件冒泡和事件捕获的原理和区别
【10月更文挑战第15天】事件冒泡和事件捕获的原理和区别
|
4月前
|
JavaScript 容器
解释一下事件委托的工作原理
【9月更文挑战第6天】解释一下事件委托的工作原理
42 7
|
8月前
|
JavaScript 前端开发
js开发:请解释事件冒泡和事件捕获。
JavaScript中的事件处理有冒泡和捕获两种方式。事件冒泡是从子元素向上级元素依次触发事件,而事件捕获则从最外层元素向内层元素传递。`addEventListener`的第三个参数可设定事件模式,`false`或不设为冒泡,`true`为捕获。例如: ```javascript element.addEventListener(&#39;click&#39;, console.log, false); // 冒泡 element.addEventListener(&#39;click&#39;, console.log, true); // 捕获 ```
52 0
|
JavaScript
请解释什么是事件代理
请解释什么是事件代理
|
JavaScript 容器
弄懂事件委托
弄懂事件委托
73 0
|
前端开发 JavaScript
一篇文章搞懂前端事件监听
一篇文章搞懂前端事件监听
366 0
|
JavaScript
简述事件委托
简述事件委托
|
JavaScript 前端开发
web前端学习(四十一)——JavaScript DOM EventListener(添加与移除监听事件)
web前端学习(四十一)——JavaScript DOM EventListener(添加与移除监听事件)
web前端学习(四十一)——JavaScript DOM EventListener(添加与移除监听事件)