如何禁用鏈接,當點擊這個代碼時,我爲圖像淡出使用hoverintent。我現在使用的是一個已命名的錨,但它跳轉,所以我想禁用點擊。禁用點擊#與hoverintent的鏈接
<A class="next2 nextbuttonB" href="#top">INSTALL</A>
<A class="next2 nextbuttonA" href="#top">ESTIMATE</A>
和jQuery的
$('#A,#B,').addClass('nextHide');
$('.nextbuttonA').hoverIntent(function() {
$('#A').fadeIn("slow");$('#B').fadeOut();
}, function() {
$('#B').hide();
});
$('.nextbuttonB').hoverIntent(function() {
$('#B').fadeIn("slow");$('#A').fadeOut();
}, function() {
$('#A').hide();
});
$('.nextbutton').hoverIntent(function() {
$('#A,#B').fadeOut();
}, function() {
$('#A,#B').hide();
});
$('#A,#B').mouseleave(function(){
$('#A,#B').fadeOut();
});
'event.preventDefault()'或'返回FALSE'將解決這個問題。 – undefined