如何change
在不触发click
其容器上的事件的情况下侦听复选框上的事件?
<label><input type="checkbox"> Hello world</label>
我想触发复选框change
事件的操作,但我不希望它冒泡到click
标签上的事件。
(function ($) {
$('input').change(function (v) {
v.stopPropagation();
});
$('label').click(function () {
alert('You should not see this message if you click the checkbox itself!');
});
})(jQuery);
有任何想法吗?谢谢!