window.location



window.location.reload();
刷新
window.location.href='' 重定向

可不写window
window.location.hostname web 主机的域名
window.location.pathname   当前页面的路径和文件名
window.location.port 返回 web 主机的端口 (80 或 443)
window.location.protocol  返回所使用的 web 协议(http:// 或 https://)
window.location.assign("http://www.w3school.com.cn")  加载新页面

原文地址:https://www.cnblogs.com/minty/p/8670749.html