我的问题是如何区分单击的锚点和单击的 div,其中该锚点位于 div 内。
<div class='box'>Message goes here and this is my anchor <a href="#"> my link</a></div>
<div class='output'></div>
$(".box").click(function(){
$('.output').append('box clicked!');
});
$(".box > a").click(function(){
$('.output').append('anchor clicked!');
});
所以,我想在没有“点击框”的情况下获得“点击锚点”。这可能吗?看看这个 jsfiddle 以了解我的疑问:JSFiddle