如何解开直播活动?

时间:2012-11-28 01:13:51

标签: jquery

我正在尝试取消绑定代码的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

有什么想法吗?非常感谢!

1 个答案:

答案 0 :(得分:2)

您正在寻找die()方法。