我想拆散首次點擊後,錨,但是當用戶點擊一個特定的按鈕,我想click事件重新綁定到這個錨如何重新綁定綁定後的單擊事件?
我寫了這個代碼
$(document).ready(function(){
$("a.package").click(function(){
//alert('click');
$(this).unbind('click');
// the rest of the code
});
$('#activate').click(function(){
$('a.package').bind('click');
// the rest of the code
});
});
的解除綁定功能如何工作好吧,但綁定功能不起作用,爲什麼?以及如何使其工作?
這可能是有益的:http://stackoverflow.com/questions/516265/jquery -unbind-event-handlers-to-bind-them-again-later – Kokos
你可能想用jQuery的click來代替bind。 http://api.jquery.com/click/ – mrtsherman