本文介绍了如何取消直播活动的绑定?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试为我的代码取消click事件的绑定.
I am trying to unbind the click event for my code.
我有
$('#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
作为我的元素.
I am using jquery 1.63 and I need .live
for my element.
有什么主意吗?非常感谢!
Any idea? Thanks a lot!
推荐答案
您正在寻找die()
方法.
这篇关于如何取消直播活动的绑定?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!