-1

我正在尝试取消绑定我的代码的点击事件。

我有

$('#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我的元素。

任何的想法?非常感谢!

4

1 回答 1

2

你正在寻找die()方法。

于 2012-11-28T01:14:48.023 回答