document.URL与windows.location.href的区别是什么

发布时间:2020-02-19编辑:脚本学堂
用了多年的javascript了吗?了解document.URL与windows.location.href的区别吗?有时间的话,参考下本文对二者的区别分析吧,会有帮助的!

document 表示的是一个文档对象,windows 表示一个窗口对象。
一个窗口下面可以有很多的document对象。每个document 都有 一个URL。

当你ctrl + F5 一个链接 http://www.jb200.com/#server
打印 alert(document.URL ); 和 alert(windows.location.href);
发现,这两个的值是不一样的:

document.URL : http://www.jb200.com/ 
windows.location.href :http://www.jb200.com/#server 

如果要用 fragment 进行相应处理的话,最好是用 windows.location.href,否则莫名的错误,会让人很抓狂的,亲。