</html>
------------------------------------------------------
返回文档中锚的数目及第一个锚的innerHTML
<html>
<body>
<a name="first">第一个锚</a><br />
<a name="second">第二个锚</a><br />
<a name="third">第三个锚</a><br />
<br />
本文档中锚的数目及第一个锚的 InnerHTML 是:
<script type="text/javas
document.write("<br>"+document.anchors.length+"<br>")
document.write(document.anchors[0].innerHTML)
</script>
</body>
</html>
----------------------------------------------------------------------------------------------
计算文档中表单数及图象数目
<html>
<body>
<form name="Form1"></form>
<form name="Form2"></form>
<form name="Form3"></form>
<img border="0" src="/i/eg_smile.gif" />
<br />
<img border="0" src="/i/eg_mouse.jpg" />
<script type="text/javas
document.write("文档包含: " + document.forms.length + " 个表单。")
document.write("本文档包含:" + document.images.length + " 幅图像。")
</script>
</body>
</html>
--------------------------------------------------------------------------------
访问集合中的项目
<html>
<body>
<form id="Form1" name="Form1">
您的姓名:<input type="text">
</form>
<form id="Form2" name="Form2">
您的汽车:<input type="text">
</form>
<p>
要访问集合中的项目,你既可以使用项目编号,也可以使用项目名称:
</p>
<script type="text/javas
document.write("<p>第一个表单名称是:" + document.forms[0].name + "</p>")
document.write("<p>第一个表单名称是:" + document.getElementById("Form1").name + "</p>")
</script>
</body>
</html>