我确定我已经做到了,但我正在重复这个动作
$('body').on('click', "[data-behave='revealEditNote']", function (e) {
e.stopPropagation();
$(e.target).closest('.editPanel').children('.editNote').slideToggle();
});
我认为 stopPropagation 阻止了这一点,但我一定是误会了......
我确定我已经做到了,但我正在重复这个动作
$('body').on('click', "[data-behave='revealEditNote']", function (e) {
e.stopPropagation();
$(e.target).closest('.editPanel').children('.editNote').slideToggle();
});
我认为 stopPropagation 阻止了这一点,但我一定是误会了......