HTML DOM links 集合

定义和用法

links 集合可返回对文档中所有 Area 和 Link 对象的引用。

语法

  1. document.links[]

实例

  1. <html>
  2. <body>
  3.  
  4. <img src="planets.gif"
  5. width="145" height="126"
  6. usemap="#planetmap" />
  7.  
  8. <map name="planetmap">
  9. <area id="venus" shape="circle"
  10. coords="124,58,8"
  11. alt="Venus"
  12. href="venus.htm" />
  13. </map>
  14. <br />
  15.  
  16. Number of links in this document:
  17. <script type="text/javascript">
  18. document.write(document.links.length)
  19. </script>
  20.  
  21. </body>
  22. </html>