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.