如何从浏览器的url中获取参数信息

Posted 田筱羽

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从浏览器的url中获取参数信息相关的知识,希望对你有一定的参考价值。

浏览器宿主环境中,有一个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)

 

以上是关于如何从浏览器的url中获取参数信息的主要内容,如果未能解决你的问题,请参考以下文章

js如何获取地址栏的参数

html如何获取url参数

vue中获取url参数

如何从当前url获取参数

如何从 C# 中的相对 URL 字符串中获取参数?

abap如何获取url后面参数