JavaScript Window Location

window.location 对象可用于获取当前页面地址(URL)并把浏览器重定向到新页面。


Window Location

window.location 对象可不带 window 前缀书写。

一些例子:

  • window.location.href 返回当前页面的 href (URL)
  • window.location.hostname 返回 web 主机的域名
  • window.location.pathname 返回当前页面的路径或文件名
  • window.location.protocol 返回使用的 web 协议(http: 或 https:)
  • window.location.assign 加载新文档

Window Location Href

window.location.href 属性返回当前页面的 URL。

显示当前页面的 href (URL):

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>window.location 对象</h1>
  5. <p id="demo"></p>
  6. <script>
  7. document.getElementById("demo").innerHTML =
  8. "本页面的完整 URL 是:<br>" + window.location.href;
  9. </script>
  10. </body>
  11. </html>

Window Location 主机名

window.location.hostname 属性返回(当前页面的)因特网主机的名称。

显示主机的名称:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>window.location 对象</h1>
  5. <p id="demo"></p>
  6. <script>
  7. document.getElementById("demo").innerHTML =
  8. "页面主机名是:" + window.location.hostname;
  9. </script>
  10. </body>
  11. </html>

Window Location 路径名

window.location.pathname 属性返回当前页面的路径名。

显示当前 URL 的路径名:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>window.location 对象</h1>
  5. <p id="demo"></p>
  6. <script>
  7. document.getElementById("demo").innerHTML =
  8. "页面路径是:" + window.location.pathname;
  9. </script>
  10. </body>
  11. </html>

Window Location 协议

window.location.protocol 属性返回页面的 web 协议。

显示 web 协议:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>window.location 对象</h1>
  5. <p id="demo"></p>
  6. <script>
  7. document.getElementById("demo").innerHTML =
  8. "页面协议是:" + window.location.protocol;
  9. </script>
  10. </body>
  11. </html>

Window Location 端口

window.location.port 属性返回(当前页面的)互联网主机端口的编号。

显示主机的端口号:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>window.location 对象</h1>
  5. <p id="demo"></p>
  6. <p><b>注释:</b>如果端口号是默认值(对于 http 为 80,对于 https 为 443),则大多数浏览器将显示 0 或不显示。</p>
  7. <script>
  8. document.getElementById("demo").innerHTML =
  9. "当前页面的 URL 端口号是:" + window.location.port;
  10. </script>
  11. </body>
  12. </html>

大多数浏览器不会显示默认端口号(http 为 80,https 为 443)。


Window Location Assign

window.location.assign() 方法加载新文档。

加载新文档:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>window.location 对象</h1>
  5. <input type="button" value="加载新的文档" onclick="newDoc()">
  6. <script>
  7. function newDoc() {
  8. window.location.assign("https://cankaoshouce.com")
  9. }
  10. </script>
  11. </body>
  12. </html>

分类导航