gpt4 book ai didi

javascript - ScrollSpy 不工作 Bootstrap

转载 作者:行者123 更新时间:2023-11-28 06:13:48 25 4
gpt4 key购买 nike

大家好,我正在使用 bootstrap 的滚动 spy 。我已经应用了一些高度和溢出来使滚动出现,但应用它后滚动 spy 不起作用。我的意思是,当我向上或向下滚动时,导航栏中的链接不会改变,如果我删除我给它的样式,它就会开始工作。这是Jsbin代码。希望这有帮助,请告诉我我做错了什么

<body data-spy="scroll" data-target=".navbar" data-offset="50">
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">WebSiteName</a>
</div>
<div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a href="#section1">Section 1</a></li>
<li><a href="#section2">Section 2</a></li>
<li><a href="#section3">Section 3</a></li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">Section 4 <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#section41">Section 4-1</a></li>
<li><a href="#section42">Section 4-2</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</nav>
<div style="height:200px; overflow:scroll;">
<div id="section1" class="container-fluid">
<h1>Section 1</h1>
..
</div>
<div id="section2" class="container-fluid">
<h1>Section 2</h1>
..
</div>
<div id="section3" class="container-fluid">
<h1>Section 3</h1>
..
</div>
<div id="section41" class="container-fluid">
<h1>Section 4 Submenu 1</h1>
..
</div>
<div id="section42" class="container-fluid">
<h1>Section 4 Submenu 2</h1>
..
</div>
</div>
</body>

JsBin

最佳答案

问题是您通过在包含所有部分的 DIV 中使用 style="height:500px;overflow:scroll;" 覆盖 BODY 滚动。

因此,BODY 永远不会滚动。您可以将 ScrollSpy 放在这个包装 DIV 上..

<div style="height:500px;overflow:scroll;" data-spy="scroll" data-target="#myNavbar" data-offset="50">
...
</div>

此外,数据目标应该是#myNavbar...

Working Demo on Codeply

关于javascript - ScrollSpy 不工作 Bootstrap ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36147577/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com