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