对于某些 html 元素,我需要使用取消绑定或关闭功能删除其他点击功能
但这也仅适用于点击功能,如下所示:
$("#test").click(function(){
alert("test1");
});
$("#test").unbind('click').click(function(){ // or off
alert("test2");
});
但是对于 live ,这不起作用,并且会触发两个警报
$("#test").live('click',function(){
alert("test1");
});
$("#test").off('click').click(function(){ //unbind
alert("test2");
});