window.location.href ()
中的window.open()
和JavaScript
方法之间有什么区别?
答案 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()
将打开一个新窗口。