Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的单页网站上有一个使用 JavaScript 滚动(动画)到 div 的内容。
现在我想让用户在禁用 JavaScript 时做同样的事情。因此,至少用户应该能够使用相同的链接跳转到 div。
有没有可能这样做,如果有,怎么做?
是的,使用锚标签。
<a href="#foo">go to foo</a> <p>some long text</p> <p id="foo">this is foo</p>
此处已对其进行了详细讨论:hash in anchor tags