[关闭]
@Dale-Lin 2017-04-27T21:29:07.000000Z 字数 613 阅读 812

id属性的特殊用法

HTML


1、使用id属性能够使一个超链接关联到页面内的某个具体地方,从而避免漫长的滚动,具体如下:

  1. <a href="#top">id属性的特殊用法</a>
  2. <a href="#middle">SecondPart</a>
  3. <a href="#bottom">LastPart</a>
  4. <h1 id="top">id属性的特殊用法</h1>
  5. <p>A herf link can be conneted to a certain location of a page, by using id to identify a block element.
  6. </p>
  7. <h2 id="middle">This is a second part of the page</h2>
  8. <p>This a second part.</p>
  9. <h3 id="bottom">This is the last part f the page</h3>
  10. <p>This athe last paragraph.</p>

无论中间加入了多少内容,点击页面顶部的超链接就能使内容跳转到相对应的区域(类似百度百科的目录)。

但需要注意的是,链接所跳转到的部分会对应地显示在页面的顶部,而不是页面的正中。
所跳转的部分id写入超链接时必须带上"#"(与CSS样式中的id使用方式相同)


2、此方法还可以链接到其它页面的对应位置,由于id属性支持跳转,所以我们只要依次在超链接地址中写入:“目标页面的相对或者绝对位置、所需跳转部分的id属性(以"#"开头)”

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注