我正在尝试取消绑定代码的click事件。
我有
$('#test').unbind('click'); //this won't work
$('#test').live('click', function(e){
alert('alert')
$(this).unbind(e) //this won't work
})
我正在使用jquery 1.63,我的元素需要.live
。
有什么想法吗?非常感谢!
答案 0 :(得分:2)
您正在寻找die()
方法。