HTML上document的⽅法document:属性
document.title                //设置⽂档标题等价于HTML的<title>标签
document.bgColor              //设置页⾯背景⾊
document.fgColor              //设置前景⾊(⽂本颜⾊)
document.linkColor            //未点击过的链接颜⾊
document.alinkColor            //激活链接(焦点在此链接上)的颜⾊
document.vlinkColor            //已点击过的链接颜⾊
document.URL                  //设置URL属性从⽽在同⼀窗⼝打开另⼀⽹页
document.fileCreatedDate      //⽂件建⽴⽇期,只读属性
document.fileModifiedDate      //⽂件修改⽇期,只读属性
document.fileSize              //⽂件⼤⼩,只读属性
document.charset              //设置字符集简体中⽂:gb2312
document:⽅法
document.write()                      //动态向页⾯写⼊内容
document.body.appendChild(oTag)
body:⼦对象
document.body                  //指定⽂档主体的开始和结束等价于<body></body>
document.body.bgColor          //设置或获取对象后⾯的背景颜⾊
document.body.link              //未点击过的链接颜⾊
document.body.alink            //激活链接(焦点在此链接上)的颜⾊
document.body.vlink            //已点击过的链接颜⾊
              //⽂本⾊
document.body.innerText        //设置<body>...</body>之间的⽂本
document.body.innerHTML        //设置<body>...</body>之间的HTML代码
pMargin        //页⾯上边距
document.body.leftMargin        //页⾯左边距
document.body.rightMargin      //页⾯右边距
document.body.bottomMargin      //页⾯下边距
document.body.background        //背景图⽚
document.body.appendChild(oTag) //动态⽣成⼀个HTML对象
location:⼦对象
document.location.hash          // #号后的部分
document.location.host          // 域名+端⼝号
document.location.hostname      // 域名
document.location.href          // 完整URL
document.location.pathname      // ⽬录部分
document.location.port          // 端⼝号
document.location.protocol      // ⽹络协议(http:)
document.location.search        // ?号后的部分
igin  //url头
常⽤对象事件:
load()          //刷新⽹页
load(URL)      //打开新的⽹页
document.location.assign(URL)      //打开新的⽹页
place(URL)      //打开新的⽹页
selection-选区⼦对象
document.selection
images集合(页⾯中的图象):
----------------------------
a)通过集合引⽤
document.images                //对应页⾯上的<img>标签
document.images.length          //对应页⾯上<img>标签的个数
document.images[0]              //第1个<img>标签
document.images[i]              //第i-1个<img>标签
----------------------------
b)通过nane属性直接引⽤
<img name="oImage">
document.images.oImage          //document.images.name属性
----------------------------
c)引⽤图⽚的src属性
document.images.oImage.src      //document.images.name属性.src ----------------------------
d)创建⼀个图象
html document是什么var oImage
oImage = new Image()
document.images.oImage.src="1.jpg"
同时在页⾯上建⽴⼀个<img>标签与之对应就可以显⽰

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。