onclick 跳转能打开新窗口吗?

2024-11-01 11:49:05
推荐回答(4个)
回答1:

可以的!直接在里面new 一个就可以了!

回答2:

-------------------------------------------

window.open(url,'_blank'); //在新的空白页面打开
window.open(url,'_self'); //覆盖当前页面打开

-------------------------------------------

回答3:

onclick="javascript:window.open('xxx.html')"

回答4:

javascript:window.open('xxx.html')