是否可以在div上使用相同的ID并在使用scrollspy滚动时突出显示导航链接?我有三个具有相同ID的div,我的问题是我的导航中的活动链接在第二个div上的区域上滚动时不会突出显示。第三个也是如此。而且,我不能在href上使用类。我的代码如下:
导航代码:
<ul class="nav navbar-nav pull-right">
<li><a href="#same-id" class="text-uppercase home-link">Same ID</a></li>
<li><a href="#other-content" class="text-uppercase">Other Content</a></li>
<li><a href="#some-other-content" class="text-uppercase">Some Other Content</a></li>
</ul>
这是我的代码:
<div id="same-id">
....
</div>
<div id="other-content">
....
</div>
<div id="same-id">
....
</div>
<div id="some-other-content">
....
</div>
<div id="same-id">
....
</div>