浏览器宿主环境中,有一个location对象,同时这个对象也是window对象和document对象的属性。
location对象中提供了与当前窗口加载的文档有关的信息,即url信息。
如:https://www.baidu.com/api/sousu?search=baidu&id=123#2
location.href:完整的url
location.protocol:返回协议(https)
location.host:返回服务器名称和端口号(www.baidu.com)
location.hostname:返回服务器名称(www.baidu.com)
location.port:返回服务器端口号(http默认80,https默认443)
location.pathname:返回url中的目录名和文件名(api/sousu)
location.search:返回查询字符串(?search=baidu&123&2)
location.hash:返回hash值(#2)
时间: 2024-10-09 22:54:18