我想将访问者引导到另一个html文件中的特定div,
这就是它在同一个html:<a href="#goTo"></a>
中的用法,但如果div在另一个html中它不起作用。例如<a href="../index.html #goTo">This link should go to the div goTo in the index file </a>
答案 0 :(得分:0)
删除链接中的空格:
<a href="../index.html#goTo">This link should go to the div goTo in the index file</a>
答案 1 :(得分:0)
尝试直接在文件名后面写锚,没有空格:
<a href="../index.html#goTo">This link should go to the div goTo in the index file </a>
如果这不起作用,请检查锚是否确实命名为“goTo”。
答案 2 :(得分:0)
您正在使用的内容称为anchor。
示例:
<a href="#goTo">Go there</a>
[more html]
<h2 id="goTo">My GoTo Header</h2>
您还可以使用例如:
在其他网站上添加锚点<a href="otherSite.html#goTo">Go there</a>