window.open与window.location.href

时间:2019-03-22 03:15:45

标签: javascript html

如何确定要使用window.open还是window.location.href打开本地网页窗口?

2 个答案:

答案 0 :(得分:0)

简单

window.open()将在括号中为您传递的URL打开一个新窗口。

window.location.href将在同一窗口中将您重定向到传递的URL。

答案 1 :(得分:0)

如果window.opener == null

//通过window.location.href打开

其他

//通过window.open

打开