0

如何为受 event.stopPropagation() 影响的容器内的元素创建某种形式的异常,例如

<ul class="test">
<li><a href="#" class="test1"></a></li>
</ul>
<script type="test/javscript">
$(".test").click(function(e){
    e.stopPropagation();
});
$(".test1").click(function(e){
    some statements...
});
</script>

我希望 .test1 在单击时触发一个事件。

4

1 回答 1

0

事件冒泡,在您的情况下会停止任何带有点击处理stopPropagation的父元素。<ul class="test">

但是,您可能有兴趣检查传播是否已停止,event.isPropagationStopped请在事件处理中使用。

于 2012-11-07T17:22:24.817 回答