确定文档中锚的数量

  1. <html>
  2. <body>
  3.  
  4. <a name="first">第一个锚</a><br />
  5. <a name="second">第二个锚</a><br />
  6. <a name="third">第三个锚</a><br />
  7. <br />
  8.  
  9. 文档中锚的数目:
  10. <script type="text/javascript">
  11. document.write(document.anchors.length)
  12. </script>
  13.  
  14. </body>
  15. </html>