是否可以对JQuery说,嘿!在添加之前,请解除任何事件处理者,而不明确通知解除事件处理者?
类似
$("jq selector").click(function() { ...}, true);
Where true means I want to unbind all click handlers set to the element. I ve came across this on various occasions and on some had strange behaviours due not unbinding event handlers first.
谢谢