Twitter Bootstrap scrollspy 总是选择最后一个元素

Twitter Bootstrap scrollspy always selecting last element(Twitter Bootstrap scrollspy 总是选择最后一个元素)
本文介绍了Twitter Bootstrap scrollspy 总是选择最后一个元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我对在这个小提琴中重新创建的 scrollspy 有疑问:http://jsfiddle.net/jNXvG/3/

I have an issue with scrollspy, recreated in this fiddle: http://jsfiddle.net/jNXvG/3/

正如演示中所见,无论滚动位置如何,ScrollSpy 插件始终保持最后一个菜单项被选中.我已经阅读了其他问题和答案,并尝试了 offset 等的不同组合,但没有一个有帮助.我不知道出了什么问题.

As seen in the demo, the ScrollSpy plugin always keeps the last menu item selected no matter the scrolling position. I've read other questions and answers and tried different combinations of offset, etc., but none of them have helped. I can't figure out what's wrong.

我不想编辑我的模板来包含丑陋的 html 'data' 标签,所以我通过 JavaScript 调用 scrollspy() 来激活插件.

I don't want to edit my template to include ugly html 'data' tags, so I am calling scrollspy() via JavaScript to activate the plugin.

下一步是移除固定的内容高度并在侧边栏使用 'affix'.

The next step would be to remove the fixed content height and use 'affix' on the sidebar.

推荐答案

您需要将 ScrollSpy 附加到将要触发滚动事件的元素,而不是要反映滚动位置的菜单:

You need to attach the ScrollSpy to the element that is going to trigger scroll events, rather than the menu that is going to reflect the scroll position:

$('#content').scrollspy();​

这篇关于Twitter Bootstrap scrollspy 总是选择最后一个元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)