-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 に答える