window.location.href
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window.location.href相关的知识,希望对你有一定的参考价值。
参考技术A (小积累)self.location.href="/url" 当前页面打开URL页面
location.href="/url" 当前页面打开URL页面
windows.location.href="/url" 当前页面打开URL页面,前面三个用法相同。
this.location.href="/url" 当前页面打开URL页面
parent.location.href="/url" 在父页面打开新页面
top.location.href="/url" 在顶层页面打开新页面
window.history.back(-1):直接返回当前页的上一页,数据全部消息,是个新页面
window.history.go(-1):也是返回当前页的上一页,不过表单里的数据全部还在
传送门:
https://www.jb51.net/article/53479.htm
https://blog.csdn.net/cgzhello1/article/details/8101525
JavaScript 中的 Window.location.href() 和 Window.open()
【中文标题】JavaScript 中的 Window.location.href() 和 Window.open()【英文标题】:Window.location.href () and Window.open () in JavaScript 【发布时间】:2013-09-09 04:09:21 【问题描述】:JavaScript
中的window.location.href ()
和window.open()
方法有什么区别?
【问题讨论】:
Window.location.href and Window.open () methods in JavaScript的可能重复 【参考方案1】:window.location
是一个对象和
window.location.href
是它的属性
它告诉你浏览器的当前 URL 位置
document.write(location.href);// will give location URL location of browser.
设置属性将重定向页面。
window.open()
是一种方法,您可以将 URL 传递给您想要在新窗口中打开
例如
window.location.href = 'http://www.xyz.com'; //Will take you to xyz.
window.open('http://www.xyz.com'); //This will open xyz in a new window.
【讨论】:
【参考方案2】:window.location.href
更改即时窗口位置。
window.open()
将打开一个新窗口。
【讨论】:
以上是关于window.location.href的主要内容,如果未能解决你的问题,请参考以下文章