Vue window.location详解
Vue window.location详解
window.location 不仅可以获得当前页面的地址 (URL),还能够将浏览器重定向到新的页面。
例子:http://www.xxxxxx.com:8000/test?id=123&username=xxx
-
vue获取当前页面完整地址:window.location.href
-
获取前面固定地址:window.location.host
-
window.location.href :http://www.xxxxxx.com:8000/test?
id=123&username=x -
window.location.protocol(协议): http:
-
window.location.host(域名 + 端口):www.xxxxxx.com:8000
-
window.location.hostname(域名): www.xxxxxx.com
-
window.location.port(端口): 8000
-
window.location.pathname(路径): /test
-
window.location.search (请求的参数):?id=123&username=xxx
-
window.location.origin(路径前面的url): http://www.xxxxxx.com:8000