我正在尝试这样做。
<a data-target="main-view" href="/home/index">
<div class="inner_div">Click here should not bubble to the container anchor</div>
</a>
我尝试的守则:
$('.inner_div').click(function(e) {
$(this).addClass('measure');
//e.preventDefault();
e.stopPropagation();
//return false;
});
我尝试了jquery stopPropagation,preventDefault等。但是它在这里工作,因为剑道在这里做了一些我无法控制以防止默认的事情。
有人可以提出一种方法吗?