JavaScript BOM 窗口位置(window.location)
-
window.location
window.location对象可用于获取当前页面地址(URL)并将浏览器重定向到新页面。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):结果将是: https://cainiaoya.com/javascript/javascript-bom-window-location.html -
window.location.hostname
window.location.hostname属性返回Internet主机的名称(当前页面的名称)。显示主机名称:结果将是: cainiaoya.com -
window.location.pathname
window.location.pathname属性返回当前页面的路径名显示当前URL的路径名:结果将是: /javascript/javascript-bom-window-location.html -
-
-