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.
如何更改滚动间谍引导程序以使其在没有哈希的情况下工作?
这是标准操作:
<a href="#page"> Page </ a>
但我想像这样使用它(没有哈希):
<a href="page"> Page </ a>
有可能的?
与其尝试更改引导程序,不如直接这样做:
<a href="#page"></a> <a href="page">Page</a>
基于引导文档:
导航栏链接必须具有可解析的 id 目标。例如,a<a href="#home">home</a>必须对应于 DOM 中的某些内容,例如 <div id="home"></div>.
<a href="#home">home</a>
<div id="home"></div>.