首先,有没有好的资源,或者有人可以告诉我什么是找出造成气泡的最佳方法吗?
起泡是由移动设备上的touchmove
引起的。
所以我打算做的是
$('.target-thats-bubbling').bind("touchmove", function(event){
event.stopPropagation();
});
第二,上面的代码行得通吗?如果我说的关于冒泡的
touchmove
是正确的如果我对导致冒泡的
touchmove
错误,请告诉我。我还没有发现任何不能引起气泡的信息。谢谢
最佳答案
通常,event.target
包含指向导致冒泡的元素的链接。
是的,touchmove
事件导致冒泡。
Useful resource on touch events。