- <body>
- <button onclick="alert(location.href)">弹出当前地址</button>
- <button onclick="location.href = 'https://www.baidu.com'">href</button>
- <button onclick="location.assign('https://www.baidu.com')">assign</button>
- <button onclick="location.reload()">刷新</button>
- <button onclick="location.replace('http://www.163.com')">replace</button>
- <script>
- // location.replace 打开一个新的页面 但不会增加新的历史记录
- // 反而会替换当前历史记录项 用户无法返回原始页面
- // location.reload() 重新加载当前页面
- // location.assign 加载新的文档
- // location.href 赋值可以打开
- // window.location.href 对象用于获取当前页面的地址 并把浏览器重定向到新的页面
- console.dir(document.location)
- console.dir(window.location)
- </script>
- </body>
暂无评论