代码如下:
function openWindow(){
if(confirm("是否打开新窗口")){
var domain = prompt("请输入网址:");
window.open(domain,"_blank",'width=400,height=500');
}
}
已验证。在webstrom上是可以打开其他网址了。楼上是正解
html
if(confirm("是否打开新窗口"))这样根本打不开
后台的代码吧。。。