1

使用scrollTolocalScroll在页面中导航,并且需要确定哪个链接被单击以用于回调函数。我已经挖掘了每个的来源,但无法理解如何提取它。

我确定的是,它$(this)指的是整个body元素。谢谢你的帮助!

这是我的功能:

$('nav').localScroll({
    duration: 500,
    easing:'easeOutSine',
    axis:'xy',
    onAfter: function(){
        /* This is where I need to identify the anchor that was clicked*/
        var test = $(this);
        console.log(test);
    }
});

HTML:

<nav>
  <ul>
    <li><a href="#one" class="active">One</a></li>
    <li><a href="#two">Two</a></li>
    <li><a href="#three">Three</a></li>
    <li><a href="#four">Four</a></li>
    <li><a href="#five">Five</a></li>
    <li><a href="#six">Six</a></li>
  </ul>
</nav>
4

1 回答 1

1

使用启用hash选项,这可能很有用:JQuery > ScrollTo > 突出显示滚动到的项目

其他解决方案是向所有链接添加另一个click事件并设置您稍后可以在onAfter回调中读取的变量/属性。

于 2012-05-21T23:36:34.637 回答