如何为受 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 在单击时触发一个事件。