jQuery>滚动至>突出显示滚动到的项目
这看起来很简单,但我似乎无法弄清楚。我想更改使用 JQuery 的 ScrollTo 插件滚动到的元素的背景颜色。我正在使用 onAfter 设置。这就是我所拥有的:
$("#nav-inpage").localScroll({
target:'body',
offset: -50, // compensate for static super-nav
hash: true,
onAfter:function(){
$(this.hash).css('background-Color' , '#ff0000');
}
});
如果我将 this.hash 更改为这个,目标(主体)的背景就会变成红色。那么如何解决我滚动到的哈希值呢?
This seems pretty simple, but I can't seem to figure it out. I want to change the background color of the element that was scrolled to using the ScrollTo plugin for JQuery. I'm using the onAfter setting. This is what I have:
$("#nav-inpage").localScroll({
target:'body',
offset: -50, // compensate for static super-nav
hash: true,
onAfter:function(){
$(this.hash).css('background-Color' , '#ff0000');
}
});
If I change this.hash to just this, the background of the target (body) turns red. So how do I address the hash that I'm scrolling to?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要实际获取哈希并将其用作 ID 选择器。
You need to actually fetch the hash and use it as an ID selector.