JS 中document.URL 和 windows.location.href 的区别
时间:2021-10-27 09:15:56|栏目:JavaScript代码|点击: 次
document 表示的是一个文档对象,windows 表示一个窗口对象。
一个窗口下面可以有很多的document对象。每个document 都有 一个URL。
但是,这不是所有的区别。当你ctrl + F5 一个链接 https://www.jb51.net/#server
打印 alert(document.URL ); 和 alert(windows.location.href);
发现,这两个的值不一样,
document.URL : https://www.jb51.net/
windows.location.href :https://www.jb51.net/#server
所以,如果要用 fragment 进行相应的处理的话,最好是用 windows.location.href
否则会出现很奇怪的错误。
一个窗口下面可以有很多的document对象。每个document 都有 一个URL。
但是,这不是所有的区别。当你ctrl + F5 一个链接 https://www.jb51.net/#server
打印 alert(document.URL ); 和 alert(windows.location.href);
发现,这两个的值不一样,
document.URL : https://www.jb51.net/
windows.location.href :https://www.jb51.net/#server
所以,如果要用 fragment 进行相应的处理的话,最好是用 windows.location.href
否则会出现很奇怪的错误。
栏 目:JavaScript代码
下一篇:Javascript 变量作用域 两个可能会被忽略的小特性
本文标题:JS 中document.URL 和 windows.location.href 的区别
本文地址:http://www.codeinn.net/misctech/181445.html