jQuery localScroll - 如何向单击的 添加类?
我通过导航中的 href 控制了滚动内容。我使用 localScroll 来滚动内容。所以问题是如何将类添加到内容当前显示部分的属性。这就是我启动滚动的方式
<script style="text/javascript">
$(document).ready(function () {
$('.navigation').localScroll();
});
</script>
谢谢, 阿雷克
I got a scrolling content controlled via href's in navigation. I use localScroll to scroll the content. So question is how to add class to attribute of currently displayedpart of a content. That's how I initiate scroll
<script style="text/javascript">
$(document).ready(function () {
$('.navigation').localScroll();
});
</script>
Thanks,
Arek
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我想通了:
I figured it out:
对于该
,您是否有任何id,或者您想在每次点击时添加类,
如果它是这样的
你可以尝试下面的方法
for that
<a>
do you have any id or you want to add class on click of everyif it is something like this
<a id="target" >
you can try the below我也在研究这个问题,@arekk 的回答给了我一个想法。我以这种方式实现了我的方法
,希望这对任何人都有效
I was looking into this too, and the answer by @arekk gave me an idea. I implemented mine this way
I hope this works for anybody looking