我正在尝试取消绑定我的代码的点击事件。
我有
$('#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
我的元素。
任何的想法?非常感谢!
我正在尝试取消绑定我的代码的点击事件。
我有
$('#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
我的元素。
任何的想法?非常感谢!