2

我想捕获所有点击事件,除非它们是在 a-tag 上完成的。

我建立这个小提琴来显示我的问题:http: //jsfiddle.net/vwyFg/7/

为什么这不起作用?

$('.three').on('click',':not(a)',function(e){
    $('body').append('<b>i did not click on a a-tag!</b><br>');
    e.preventDefault();
    e.stopPropagation();
});

html:

<div class="wrap three">
    <div class="wrap two">
        <div class="wrap one">
            <a href="javascript:$('body').append('i DID click on a a-tag!!<br>');;return false;">klick me!</a>
        </div>
    </div>
</div>​
4

3 回答 3

2

您需要检查点击事件的来源:

$('div.three').on('click',function(e){    
    if (e.target.tagName.toLowerCase() == 'a') return;
    $('body').append('<b>i did not click on a a-tag!</b><br>');
    e.preventDefault();
    e.stopPropagation();
});​
于 2012-12-05T20:16:16.440 回答
1

将您的代码更改为此,注意 :not -

$('.three:not(a)').on('click',function(e){
    $('body').append('<b>i did not click on a a-tag!</b><br>');
    e.preventDefault();
    e.stopPropagation();
});
于 2012-12-05T20:11:33.603 回答
1

我添加了这段代码:

$(".three a").click(function(e) {
    e.stopPropagation();
});​

看这里:JSFiddle

于 2012-12-05T20:17:18.967 回答