js中事件冒泡的问题

2021-03-10 18:31

阅读:323

标签:ros   back   解决   elb   pre   other   遇见   highlight   html   

这几天遇见js方法事件冒泡的问题



    
    
   

在tr中有多个td,tr与其中一个td有触发事件,这时候点击td就会同时触发两个事件。

解决办法:

在b方法中加入

var e = window.event;                // Get the window event
e.cancelBubble = true;                       // IE Stop propagation
if (e.stopPropagation) {
    e.stopPropagation();  // Other Broswers
}
 

js中事件冒泡的问题

标签:ros   back   解决   elb   pre   other   遇见   highlight   html   

原文地址:https://www.cnblogs.com/lansetuerqi/p/12849575.html


评论


亲,登录后才可以留言!