2015-03-25 134 views
1

我想引導訪問者到另一個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>鏈接到另一個html文件中的另一個div

+1

的index.html#GOTO做這項工作錨?沒有空間。 – btevfik 2015-03-25 12:15:37

回答

0

在您的鏈接刪除空格:

<a href="../index.html#goTo">This link should go to the div goTo in the index file</a> 
0

嘗試在文件名後直接寫錨,不留空格

<a href="../index.html#goTo">This link should go to the div goTo in the index file </a> 

如果不工作,檢查如果錨點真的名爲「goTo」。

+0

它的工作,謝謝 – Azertit 2015-03-25 12:19:24

0

你正在使用的東西叫做anchor

例子:

<a href="#goTo">Go there</a> 
[more html] 
<h2 id="goTo">My GoTo Header</h2> 

您也可以ADRESS在其他網站例如爲:

<a href="otherSite.html#goTo">Go there</a> 
+0

是的,它現在的作品,謝謝 – Azertit 2015-03-25 12:19:36