コードのクリック イベントのバインドを解除しようとしています。
私は持っている
$('#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
おり、要素が必要です。
何か案が?どうもありがとう!