<div style="width:200px; height:200px; background:blue;">
<!-- Other markup -->
<button type="button">Special Button</button>
</div>
(function ($) {
$("div").click(function () {
alert('fired');
// Don't fire when the button is clicking!
});
}(jQuery));
如何在单击按钮时将代码/ html架构为而不是触发“div”点击绑定?这是一个jsfiddle来玩。
答案 0 :(得分:4)