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

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/15800.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论