小编典典

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

all

JavaScript中的方法window.location.href和方法有什么区别?window.open ()


阅读 90

收藏
2022-04-15

共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.

附加信息:

window.open()可以传递额外的参数。参见:window.open 教程

2022-04-15