2012-10-01 54 views
0

我正在使用ScrollTo和LocalScroll插件。 基本上我只是想確定點擊鏈接是否有一個特定的類添加到它。我知道如何正常執行此操作,但如果可能,在調用插件時,我想在onBefore函數中執行此操作。我嘗試使用anchor關鍵字訪問它,但是我沒有得到任何地方。需要點擊鏈接的屬性,使用LocalScroll插件

下面是函數:

$.localScroll({ 
     duration:800, 
     onBefore:function(e, anchor, $target){ 

     } 
}); 
+0

是一個真正的問題,哈哈...... $用於繼承的插件方法 –

+0

@josh他只是要求澄清,以便他可以嘗試幫助:) – thewebguy

回答

0
if ($(this).hasClass('className')) { 
    //Code 
} 

應該幫助

0

試試這個

$.localScroll({ 
    duration:800, 
    onBefore:function(e, anchor, $target){ 
    if ($(ancor).hasClass('your_class')) { 
    } 
    } 
});