网页中有哪几种书签标记
发布网友
发布时间:2022-04-19 16:33
我来回答
共1个回答
热心网友
时间:2023-08-30 02:43
一般网页的书签都是标记都是用锚点做得,用html表示即:
<a></a>
首先设计书签
<a name=”top”></a>
跳转到书签位置
<a href=”#top”>返回到top位置</a>
2. 不同的页面之间转接
First.html中定义了书签
<a name=”top”>Top的位置</a>
现在要从Second.html中转入First.html并且将位置定到top所在的位置
可以设置
<a href=”first.html#top”>return first Top</a>
就我所指html的书签就是a标记