我爲頁面上的某些選項卡創建了一個簡單的背景效果,但如果該選項卡具有「當前」類,則不希望觸發該效果。jQuery .hasClass方法省略效果
我相信是有辦法做到這一點使用.hasClass
以下是我正在使用什麼效果:
$('ul.htabs a').mouseover(function(){
$(this).stop().animate(
{backgroundPosition:"(0 -810px)"},
{duration:150},
{easing: 'easeOutCubic'})
}).mouseout(function(){
$(this).stop().animate(
{backgroundPosition:"(0 -806px)"},
{duration:150},
{easing: 'easeInCubic'})
});
「current」類是動態添加的,還是在頁面加載時出現? – 2010-06-09 16:55:08
它被動態添加,是的 – 2010-06-09 17:38:11