我有一個.hover,當它被點擊時,我需要解除綁定,然後當另一個元素被點擊需要再次綁定任何建議如何讓它與下面的代碼一起工作。jquery綁定和解除綁定
$('ul li.port a, ul li.serv a,ul li.cont a, ul li.test a').hover(
function() {
$('span', this)
.stop()
.animate({margin: '15px', left:'+=50',opacity: 1}, 200);
$(this).stop().animate({opacity: 1}, 200);
},
function() {
$('span', this)
.stop()
.animate({margin: '0px',opacity: 0}, 200);
$(this).stop().animate({opacity: 0},200);
}
);
我有工作像這樣 $( 'UL李一')。點擊(函數(){ \t $(本).unbind( '的mouseenter') .unbind( '鼠標離開'); \t \t \t \t \t \t }); 但當我點擊另一個元素,我不能讓它再次綁定 – Terry 2010-03-07 07:29:45