使用scrollTo和localScroll在页面中导航,并且需要确定哪个链接被单击以用于回调函数。我已经挖掘了每个的来源,但无法理解如何提取它。
我确定的是,它$(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>