HTML 获得当前页面路径

假如当前页面的全路径是:http://127.0.0.1:8020/login/getUrl.html?__hbt=1523851552803

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 获得全路径。如 http://127.0.0.1:8020/login/getUrl.html?__hbt=1523851552803
window.location.href

// 获得路径中的参数。如 ?__hbt=1523851552803
window.location.search

// 获得路径的协议。如 http:
window.location.protocol

// 获得主机及端口号。如 127.0.0.1:8020
window.location.host

// 获得主机地址。如 127.0.0.1
window.location.hostname

// 获得端口号。如 8020
window.location.port

// 获得路径部分。如 /login/getUrl.html
window.location.pathname

本文参考:https://blog.csdn.net/qq_40975034/article/details/79959107