This time I will show you how to prevent the bubbling of JS and the default behavior of the browser. What are the precautions? The following is a practical case. Let’s take a look.
Event compatibility:function myfn(e){ var evt = e ? e:window.event; }js stops event bubblingfunction myfn(e){ window.event? window.event.cancelBubble = true : e.stopPropagation(); }
function myfn(e){ window.event? window.event.returnValue = false : e.preventDefault(); }
JavaScriptstop bubbling and prevent default behavior
Prevent bubblingw3c The method is e.stopPropagation(), and IE uses e.cancelBubble = truestopPropagation is also a method of the event object (Event). Its function is to prevent the bubbling event of the target element, but it will not prevent the default behavior. . What is a bubbling event? If a "click" event is bound to a button, the "click" event will be triggered in its parent element in turn. stopPropagation prevents events from the target element from bubbling up to the parent element. For example:<div id='div' onclick='alert("div");'> <ul onclick='alert("ul");'> <li onclick='alert("li");'>test</li> </ul> </div>
window.event? window.event.cancelBubble = true : e.stopPropagation();
//假定有链接<a href="http://caibaojian.com/" id="testA" >caibaojian.com</a> var a = document.getElementById("testA"); a.onclick =function(e){ if(e.preventDefault){ e.preventDefault(); }else{ window.event.returnValue == false; } }
The return false of javascript will only prevent the default behavior, but using jQuery will both prevent the default behavior and prevent the object from bubbling The following uses native js, which will only prevent the default behavior and will not stop bubbling. Bubble
<div id='div' onclick='alert("div");'> <ul onclick='alert("ul");'> <li id='ul-a' onclick='alert("li");'><a href="http://caibaojian.com/"id="testB">caibaojian.com</a></li> </ul> </div> var a = document.getElementById("testB"); a.onclick = function(){ return false; };
<div id='div' onclick='alert("div");'> <ul onclick='alert("ul");'> <li id='ul-a' onclick='alert("li");'><a href="http://caibaojian.com/"id="testC">caibaojian.com</a></li> </ul> </div> $("#testC").on('click',function(){ return false; });
function stopBubble(e) { //如果提供了事件对象,则这是一个非IE浏览器 if ( e && e.stopPropagation ) //因此它支持W3C的stopPropagation()方法 e.stopPropagation(); else //否则,我们需要使用IE的方式来取消事件冒泡 window.event.cancelBubble = true; }
//阻止浏览器的默认行为 function stopDefault( e ) { //阻止默认浏览器动作(W3C) if ( e && e.preventDefault ) e.preventDefault(); //IE中阻止函数器默认动作的方式 else window.event.returnValue = false; return false; }
In IE/Opera it is window.event, in Firefox it is event; and the object of the event is window.event.srcElement in IE, in Firefox it is event.target, both are available in Opera.
function a(e){ var e = (e) ? e : ((window.event) ? window.event : null); var e = e || window.event; // firefox下window.event为null, IE下event为null
The API that jQuery must master
aja’s asynchronous upload plug-in
jQuery implements form verification after multi-layer verification
The above is the detailed content of How to prevent JS bubbling and browser default behavior. For more information, please follow other related articles on the PHP Chinese website!