weibo_李李李李清儿_03433619
2016-06-10 16:24
function openWindow(){
var c=confirm("是否打开窗口?");
if(c==true){
var b=prompt("input","http://www.baidu.com");
if(b!=null){
window.open('b','','width=400px,height=500px,menubar=no,toolbar=no');
}
}
}
说b这个变量有问题,我也懵了找不到原因
b是变量,所以
window.open('b','','width=400px,height=500px,menubar=no,toolbar=no');
这里的b不能加引号,应该改为:
window.open(b,'','width=400px,height=500px,menubar=no,toolbar=no');
window.open('b','','width=400px,height=500px,menubar=no,toolbar=no');
这一行b不要加' '因为b是变量,函数用变量不用加引号
改为 window.open(b,'width=400px,height=500px,menubar=no,toolbar=no');
JavaScript入门篇
739817 学习 · 9566 问题
相似问题