我正在使用bootstrap,我正试图让一个子导航栏贴在一边。 Bootstrap的文档说Options can be passed via data attributes or JavaScript.
他们提供的示例是$('#navbar').affix()
,但是如何通过javascript传递偏移量选项? (比如从顶部偏移200px)?
LINK:http://twitter.github.io/bootstrap/javascript.html#affix
答案 0 :(得分:0)
$('#navbar').affix({ offset: { top : 200 } });