注意:我现在介绍事件冒泡以及如何阻止它。
代码 ==>
function foo ( bar ){
//do something
}
在上面的函数中,我想捕获它,event
这样我就可以阻止它冒泡。
到目前为止我尝试过的->
试试 1
function foo ( bar,event ){
//do something
}
试试 2
function foo (bar ){
if( window.event || event )
// code to stop bubling
//do something
}
不使用jQuery,需要 vanilla js 解决方案。使用这种方法来防止事件冒泡。
——初学者。