JavaScript中的方法window.location.href和方法有什么区别?window.open ()
window.location.href
window.open ()
window.location.href不是一种方法, 它 是一个属性,可以告诉您浏览器的当前 URL 位置。更改属性的值将重定向页面。
window.open()是一种可以将 URL 传递给要在新窗口中打开的方法。例如:
window.open()
window.location.href 示例:
window.location.href = 'http://www.google.com'; //Will take you to Google.
window.open() 示例:
window.open('http://www.google.com'); //This will open Google in a new window.
附加信息:
window.open()可以传递额外的参数。参见:window.open 教程