js中windows.location.href和document.URL的用法区别

  作者:会飞的

js中windows.location.href和document.URL的用法区别:在javascript中document 和 windows 这两个对象的区别如下。windows 表示一个窗口对象,document 表示的是一个文档对象。一个窗口下面可以有很多的document对象。每个document 都有 一个URL。但是,这不是所有的区别。当你ctrl + F5 一个链接 http://www.xinge360.com/#server打印 alert(docume

js中windows.location.href和document.URL的用法区别: 

在javascript中document 和 windows 这两个对象的区别如下。 

windows 表示一个窗口对象,document 表示的是一个文档对象。 

一个窗口下面可以有很多的document对象。每个document 都有 一个URL。 

但是,这不是所有的区别。当你ctrl + F5 一个链接 http://www.xinge360.com/#server 

打印 alert(document.URL ); 和 alert(windows.location.href); 

发现,这两个的值不一样, 

document.URL : http://www.xinge360.com/ 

windows.location.href :http://www.xinge360.com/#server 

所以,如果要用 fragment 进行相应的处理的话,最好是用 windows.location.href 

否则会出现意想不到的错误。


有用  |  无用

猜你喜欢