HTML DOM anchors 集合

定义和用法

anchors 集合可返回对文档中所有 Anchor 对象的引用。

语法

  1. document.anchors[]

实例

  1. <html>
  2.  
  3. <body>
  4. <a name="first">First anchor</a><br />
  5. <a name="second">Second anchor</a><br />
  6. <a name="third">Third anchor</a><br />
  7. <br />
  8.  
  9. Number of anchors in this document:
  10. <script type="text/javascript">
  11. document.write(document.anchors.length)
  12. </script>
  13. </body>
  14.  
  15. </html>