window.location与open用法

唐焕
2023-12-01

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

  • location.hostname 返回 web 主机的域名

  • location.pathname 返回当前页面的路径和文件名

  • location.port 返回 web 主机的端口 (80 或 443)

  • location.protocol 返回所使用的 web 协议(http: 或 https:)

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

  • window.location.href='URL'" // 覆盖当前页

  • location='URL'" // 覆盖当前页

2、window的open方法
window.open('URL','_blank');" // 在新窗口打开
window.open('URL','_self');" // 覆盖当前页

 类似资料: