js获取当前页面相关信息

Posted 木风向前冲

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js获取当前页面相关信息相关的知识,希望对你有一定的参考价值。

1. 获取整个url:     console.log(window.location.href)       http://localhost:8082/Index.html?name=tom

2. 获取域名加端口号:     console.log(window.location.host);      localhost:8082

3. 获取域名:       console.log(document.domain);       localhost

4. 获取端口号:      console.log(window.location.port);      8082

5. 获取协议:       console.log(window.location.protocol);    http:

6. 获取页面相对路径    console.log(window.location.pathname);      /Index.html

7. 获取url中?后边的部分  console.log(window.location.search);      name=tom

以上是关于js获取当前页面相关信息的主要内容,如果未能解决你的问题,请参考以下文章

如何用js得到当前页面的url信息方法(JS获取当前网址信息)

js准确获取当前页面url网址信息

js如何准确获取当前页面url网址信息

js获取当前页面信息

js如何准确获取当前页面url网址信息

js如何准确获取当前页面url网址信息