我正在尝试做这样的事情。
<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 等。但它在这里不起作用,因为 Kendo 在这里做一些我无法控制以防止默认的事情。
任何人都可以提出一种方法吗?