我想知道在点击外部链接后是否可以移动到页面的特定位置。
假设我有一个类似的链接:<a href="another_page.html">Go there</a>
。点击'Go there'
后,我想转到another_page.html
的具体位置。位置可以是在中间或中心或任何其他位置。是否可能。
答案 0 :(得分:2)
您可以使用HTML's anchors:
实施例
主页:
<a href="test1.html#John">John</a>
<a href="test1.html#Doe">Doe</a>
示例页面:
<div id='John'></div>
<div id='Doe'></div>
答案 1 :(得分:1)
您可以在&#39;#&#39;中使用href。链接到具有特定ID的元素:
<a href="another_page.html#gothere">Go There</a>
其中another_page.html的元素包含
id="gothere"
答案 2 :(得分:1)
您可以通过引用元素 id 来转到页面的任何位置,
<a href="another_page.html#position">Go there</a>
在页面div
上创建id="position"
another_page.html
为
<div id="position">
它将指向position
div
答案 3 :(得分:0)
你可以使用链接的id作为参考来实现这个!!
说:<a href="another_page.html#mylink">Go there</a>
并在页面another_page.html
中创建提到的id
(例如:<p id="mylink">Mylink<p>
)
答案 4 :(得分:0)
<a href="#section">Section part></a>
When click on the anchor then it will be redirect on this section which is mentioned below.
<div id="section">
Hi I am websolutionexpert
You can follow me.
</div>