标签: javascript html
如何确定要使用window.open还是window.location.href打开本地网页窗口?
window.open
window.location.href
答案 0 :(得分:0)
简单
window.open()将在括号中为您传递的URL打开一个新窗口。
window.open()
window.location.href将在同一窗口中将您重定向到传递的URL。
答案 1 :(得分:0)
如果window.opener == null
//通过window.location.href打开
其他
//通过window.open