window.location.href ()
和 和window.open()
有什么区别JavaScript
?
问问题
76570 次
2 回答
22
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.
于 2013-09-05T10:55:52.213 回答
5
window.location.href
更改即时窗口位置。
window.open()
将打开一个新窗口。
于 2013-09-05T10:52:48.793 回答