js中的事件冒泡
程序员文章站
2022-04-28 11:05:31
...
还在整理当中~~~
1、
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <title>test-event-bubble</title> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <style type="text/css"> #test-wrap div{border:1px solid #ccc;padding:5px 10px 10px;cursor:pointer;} #test2{margin-top:15px;} </style> </head> <body> <div id="test-wrap"> <h3>事件冒泡</h3> <div id="test"> test <div id="sub"> sub <div id="on">this is on</div> </div> </div> <h3>没有冒泡</h3> <div id="test2"> test2 <div id="sub2"> sub2 <div id="on2">this is on2</div> </div> </div> </div> <script type="text/javascript"> var $ = function(){ return document.getElementById(arguments[0])}; var test = $('test'), sub = $('sub'), on = $('on'), test2 = $('test2'), sub2 = $('sub2'), on2 = $('on2'); var can = function(event){ var e = event || window.event; if(window.event){ //cancelBubble的字面意思是取消冒泡 //如果事件句柄想阻止事件传播到包容对象,必须把该属性设为 true。 e.cancelBubble = true; } else { e.preventDefault(); //方法取消事件的默认动作 e.stopPropagation(); //stopPropagation的字面意思是停止传播。 } } on.onmouseover = function(event){ this.style.border = '2px dashed red'; } sub.onmouseover = function(event){ this.style.border = '2px dashed green'; } test.onmouseover = function(event){ this.style.border = '2px dashed blue'; } on2.onmouseover = function(event){ can(event); this.style.border = '2px dashed red'; } sub2.onmouseover = function(event){ can(event); this.style.border = '2px dashed green'; } test2.onmouseover = function(event){ can(event); this.style.border = '2px dashed blue'; } on.onmouseout = sub.onmouseout = test.onmouseout = on2.onmouseout = sub2.onmouseout = test2.onmouseout = function(){ this.style.border = '1px solid #ccc'; } </script> </body> </html>
上一篇: DRDS到MaxCompute(原ODPS)数据归档性能优化测试 测试
下一篇: Visual Studio力推的测试插件CodeRush最新版v20.1.8发布了!! 测试Visual StudioC#
推荐阅读
-
js全局变量在其他方法中赋值后无法影响到该方法外的全局变量的值(奇葩问题)
-
js中for循环内的匿名函数使用i的问题及解决方案
-
js中函数表示的声明、匿名函数的使用
-
瞬间懂了,浅析对JS中的盒模型认识与理解
-
深入浅析JS中的的try catch语句,聊聊它的 2 个作用!
-
图文详解鼠标事件CSS:hover和JS:mouseover的区别
-
js javascript 在页面加载的时候,直接对button的onclick赋值,按钮事件
-
js中判断一个字符串是否包含另一个字符串的方式
-
怎样去掉Eclipse中的Js错误提示 JavaScripteclipse
-
怎样去掉Eclipse中的Js错误提示 JavaScripteclipse