Window及document对象

Window及document对象

Window对象

对象属性

  window //窗户自身

  window.self //引用本窗户window=window.self

  window.name //为窗户命名

  window.defaultStatus //设定窗户状态栏信息

  window.location //URL地址,配备布置这个属性可以打开新的页面

  -------------------------------------------------- -------------------

  对象方法

  window.alert("text") //提示信息会话框

  window.confirm("text") //确认会话框

  window.prompt("text") //要求键盘输入会话框

  window.setIntervel("action",time) //每一隔指定的时间(毫秒)就执行一次操作

  window.clearInterval() //清除时间配备布置作用就是终止轮回

  window.setTimeout(action,time) //隔了指定的时间(毫秒)执行一次操作

  window.open() //打开新的窗户

  window.close() //关闭窗户

  -------------------------------------------------- -------------------

  成员对象

  window.event

  window.document //见document对象详解

  window.history

  window.screen

  window.navigator

  window.external

  -------------------------------------------------- -------------------

  window.history对象

  window.history.length //浏览过的页面数

  history.back() //撤退退却

  history.forward() //进步

  history.go(i) //前进或头退到历史记录的第i个页面

  //i>0进步,i<0撤退退却

  -------------------------------------------------- -------------------

  window.screen对象

     window.screen.width //屏幕宽度

  window.screen.height //屏幕高度

  window.screen.colorDepth //屏幕色深

  window.screen.availWidth //可用宽度

  window.screen.availHeight //可用高度(除去任务栏的高度)

  -------------------------------------------------- -------------------

  window.external对象

  window.external.AddFavorite("地址","标题" ) //把网站新增到保藏夹

  -------------------------------------------------- -------------------

  window.navigator对象

  window.navigator.appCodeName //浏览器代码名

  window.navigator.appName //浏览器步伐名

  window.navigator.appMinorVersion //浏览器补钉版本

  window.navigator.cpuClass //cpu类型 x86

  window.navigator.platform //操作体系类型 win32

  window.navigator.plugins

  window.navigator.opsProfile

  window.navigator.userProfile

  window.navigator.systemLanguage //客户体系语言 zh-cn简体中文

  window.navigator.userLanguage //用户语言,同上

  window.navigator.appVersion //浏览器版本(包括 体系版本)

  window.navigator.userAgent

  window.navigator.onLine //用户否在线

  window.navigator.cookieEnabled //浏览器是否撑持cookie

  window.navigator.mimeTypes

 

document对象

对象属性:

document.title                 //设置文档标题等价于HTML的

document.bgColor               //设置页面背景色

document.fgColor               //设置前景色(文本颜色)

document.linkColor             //未点击过的链接颜色

document.alinkColor            //激活链接(焦点在此链接上)的颜色

document.vlinkColor            //已点击过的链接颜色

document.URL                   //设置URL属性从而在同一窗口打开另一网页

document.fileCreatedDate       //文件建立日期,只读属性

document.fileModifiedDate      //文件修改日期,只读属性

document.fileSize              //文件大小,只读属性

document.cookie                //设置和读出cookie

document.charset               //设置字符集 简体中文:gb2312

----------------------------



常用对象方法



document.write()                      //动态向页面写入内容

document_createElement_x_x(Tag)           //创建一个html标签对象

document.getElementByIdx_x_x(ID)           //获得指定ID值的对象

document.getElementsByName(Name)      //获得指定Name值的对象

document.body.a(oTag)

body-主体子对象



document.body                   //指定文档主体的开始和结束等价于

document.body.bgColor           //设置或获取对象后面的背景颜色

document.body.link              //未点击过的链接颜色

document.body.alink             //激活链接(焦点在此链接上)的颜色

document.body.vlink             //已点击过的链接颜色

document.body.text              //文本色

document.body.innerText         //设置...之间的文本

document.body.innerHTML         //设置...之间的HTML代码

document.body.topMargin         //页面上边距

document.body.leftMargin        //页面左边距

document.body.rightMargin       //页面右边距

document.body.bottomMargin      //页面下边距

document.body.background        //背景图片

document.body.a(oTag) //动态生成一个HTML对象

常用对象事件



document.body.onclick="func()"              //鼠标指针单击对象是触发

document.body.onmouseover="func()"          //鼠标指针移到对象时触发

document.body.onmouseout="func()"           //鼠标指针移出对象时触发

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        // ?号后的部分



常用对象事件

documeny.location.reload()          //刷新网页

document.location.reload(URL)       //打开新的网页

document.location.assign(URL)       //打开新的网页

document.location.replace(URL)      //打开新的网页

========================================================================

selection-选区子对象

document.selection

========================================================================

images集合(页面中的图象):

----------------------------

a)通过集合引用

document.images                 //对应页面上的Window及document对象的区别img标签

document.images.length          //对应页面上Window及document对象的区别img标签的个数

document.images[0]              //第1个Window及document对象的区别img标签           

document.images[i]              //第i-1个imgWindow及document对象的区别标签

----------------------------

b)通过nane属性直接引用

Window及document对象的区别

document.images.oImage          //document.images.name属性

----------------------------

c)引用图片的src属性

document.images.oImage.src      //document.images.name属性.src

----------------------------

d)创建一个图象

var oImage

oImage = new Image()

document.images.oImage.src="1.jpg"

同时在页面上建立一个Window及document对象的区别img标签与之对应就可以显示

  

window对象和document对象的区别
一般来讲,一个window里就是一个document,但是,iframe里面也可以装个document,在iframe里面就有区别了

alert(document.location === window.location);  // true
 
不要混淆Window对象的location属性和Document对象的location属性。前者引用一个Location对象,而后者只是一个只
读字符串,并不具有Location对象的任何特性。document.location与document.URL是同义的,后者在
JavaScript1.1中是该属性的首选名称(因为这样避免了潜在的混淆)。在大多数情况下,document.location和
location.href是相同的。但是,当存在服务器重定向时,document.location包含的是已经装载的URL,而
location.href包含的则是原始请求的文档的URL。
 
document.location和window.location有什么区别就是
document你可以理解为文档,就是你的网页
window理解为窗口,就是你的ie浏览器包含的
无框架:简单的说,没有框架的情况下,是等同的
有框架:在有框架的情况下,最外层是相同的,在iframe里面的document.location和window.location不同的。
iframe里面的document.location 你看不ie地址变化,只改变iframe部分,
此时的window.location和top.location效果一致
 
document.location="url";(只读)
document.location.reload("url";);
window.location="url";
location="url";
document.href="url"
document.location.href="url"
document.location.replace="url"
document.action="url"; document.submit();
document.location.href和document.location.replace都可以实现从A页面切换到B页面,但他们的区别是:
用document.location.href切换后,可以退回到原页面。而用document.location.replace切换后,不可以通过“后退”退回到原页面。
关于document.location.href或其他可回退的切换方式
document.location 相当于 document.URL 声明了装载文档的URL,
除非发生了服务器重定向, 否则该属性的值与Window.location.href的值是一样的.
history.go(-1);//返回上一页
document.IFRAME名称.location.href='url';//改变框架内容 

你可能感兴趣的:(document)