小编典典

JavaScript中的window.location.href和window.open()方法

javascript

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


阅读 339

收藏
2020-04-25

共1个答案

小编典典

window.location.href是不是一种方法,它是一个属性,它会告诉你浏览器的当前URL位置。更改属性的值将重定向页面。

window.open()是一种可以将URL传递到要在新窗口中打开的方法。例如:

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.

2020-04-25