location.hostname 返回 web 主机的域名
127.0.0.1location.port 返回 web 主机的端口 (80 或 443)
8020location.protocol 返回所使用的 web 协议(http:// 或 https://)
http:location.pathname 返回当前页面的路径和文件名
/ImYzy/test/myTest2.html
——PS,加载新文档使用window.location.assign("http://www.w3cschool.com.cn");
<!DOCTYPE html>
<html><head><meta charset="utf-8" /><title></title></head><body><script>function newDoc() {window.location.assign("http://www.w3school.com.cn")}document.write("<h2>location.hostname 返回 web 主机的域名</h2>" + location.hostname + "<hr />");document.write("<h2>location.port 返回 web 主机的端口 (80 或 443)</h2>" + location.port + "<hr />");document.write("<h2>location.protocol 返回所使用的 web 协议(http:// 或 https://)</h2>" + location.protocol + "<hr />");document.write("<h2>location.pathname 返回当前页面的路径和文件名</h2>" + location.pathname + "<hr />");</script><input type="button" value="加载新文档" οnclick="newDoc()"></body>
</html>