猿问

javascript window和document的区别

javascript window和document的区别


holdtom
浏览 371回答 3
3回答

摇曳的蔷薇

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';//改变框架内容 

斯蒂芬大帝

javascript中的Window 对象表示浏览器中打开的窗口。如果文档包含框架(frame 或 iframe 标签),浏览器会为 HTML 文档创建一个 window 对象,并为每个框架创建一个额外的 window 对象。注释:没有应用于 window 对象的公开标准,不过所有浏览器都支持该对象。实际的window就是指一个窗口,比如windows的视窗操作都是一个window

四季花海

12345typeof Window; //functiontypeof window; //object window.constructor===Window; //truewindow instanceof Window; //true说明window是Window的实例,Window是window的构建函数 
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答