锚数组
虽然html的<A>标识符通常用来为其他文档定义超文本链接,它也可以用来定义文档中命名的锚,因此未能当内部的链接能偶跳到文档的其他地方。
例如:
<html>
<head>
<title>Anchors Example</title>
</head>
<body>
<A name="one">Anchor one is here
html code
<A name="two">Anchor two is here
more html code
<A href="#one">go back to anchor one</A><br>
<A href="#two">go back to anchor two</A><br>
</body>
</html>
javascript提供了将anchors数组作为访问与当前文档中锚有关的信息与方法的措施。数组中的每一个元素是anchor对象,而且与所有的数组一样,该数组有length属性。