JavaScript中的Window.location.href()和Window.open()

时间:2013-09-05 10:51:27

标签: javascript windows

window.location.href ()中的window.open()JavaScript方法之间有什么区别?

2 个答案:

答案 0 :(得分:20)

window.location对象

window.location.href属性

它会告诉您浏览器的当前网址

document.write(location.href);// will give location URL location of browser.

设置属性将重定向页面。

window.open()方法,您可以将网址传递给您想要在新窗口中打开的网址

E.g

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.

答案 1 :(得分:5)

window.location.href更改了即时窗口位置。

window.open()将打开一个新窗口。