function openWindow(){ var hi = confirm("是否输入网址:"); if(hi==true){ var w = prompt("请输入网址:"); window.open('w','width=400,height=500,toolbar=no,meaubar=no'); }else{ window.open('http://www.imooc.com/','height=200,width=300'); } }
1 回答
super_mb
TA贡献101条经验 获得超107个赞
因为w变量本身存的就是字符串了,你加个引号网址就变成了w。
window.open('w','width=400,height=500,toolbar=no,meaubar=no');
这句中的'w'直接用w就行了吧。即:
window.open(w,'width=400,height=500,toolbar=no,meaubar=no');
添加回答
举报
0/150
提交
取消