<div class="a" id="b">11</div>
<a name="first">First anchor</a><br />
<a name="second">Second anchor</a><br />
<a name="third">Third anchor</a><br />
<br />
<form name="Form1"></form>
<form name="Form2"></form>
<form name="Form3"></form>
<img border="0" src="hackanm.gif" width="48" height="48" name="image">
<br />
Document 对象集合
集合 |
描述 |
使用方法 |
[all]
|
提供对文档中html元素的访问 |
document.all.a |
[anchors]
|
返回对文档中所有Anchor对象的引用(只包含a标签中带有name的属性) |
document.anchors.first/.length |
applets |
返回对文档中所有 Applet 对象的引用。 |
不知道 |
[forms]
|
返回对文档中所有 Form 对象引用。 |
document.anchors.Form1/.length |
[images]
|
返回对文档中所有 Image 对象引用。 |
document.anchors.Form1/.length |
[links]
|
返回对文档中所有 Area 和 Link 对象引用。 |
document.anchors.image/.length |
Document 对象属性
属性 |
描述 |
用法 |
body |
提供对 元素的直接访问。对于定义了框架集的文档,该属性引用最外层的 。 |
不知道 |
cookie |
设置或返回与当前文档有关的所有 cookie。 |
document.cookie |
domain |
返回当前文档的域名。 |
document.domain |
lastModified |
返回文档被最后修改的日期和时间。 |
document.lastModified |
referrer |
返回载入当前文档的文档的 URL。 |
… |
title |
返回当前文档的标题。 |
… |
URL |
返回当前文档的 URL。 |
… |
Document 对象方法