-
小新在编程
window.open(b, "_blank"," width=400, height=500, menubar=no, toolbar=no"); //改下这里
-
大咪
赞同说没有调用的看法……我觉得也你只是声明了函数,并没有调用
-
威武小土豆
function openWindow() {
var a = confirm("新窗口打开时弹出确认框,是否打开?");
if(a == true) {
var b = prompt('通过输入对话框', ' http://www.imooc.com');
window.open(b, "_blank, width=400, height=500, menubar=no, toolbar=no");
} else {
alert("bye!");
}
}
复制我的 你的http后面的:是中文字符
-
kiss_von
你只是声明了函数,你没调用它及触发它的事件。怎么可能会显示出来
-
sanlelele
我就随便看看,假装很厉害的样子。
-
慕粉18271715520
。。。。
-
LLLL_
这个应该是写在JS里的
-
Accompany
var b = prompt('通过输入对话框', ' http://www.imooc.com/'); var b = prompt('通过输入对话框', ' http://www.imooc.com/');你就没有发现是中文符号么 window.open(b, "_blank, width=400, height=500, menubar=no, toolbar=no");改成 window.open(b, "_blank", "width=400, height=500, menubar=no, toolbar=no");至于调用方法应该不用说了吧
-
阿探
是不是 : 冒号你写成中文了
-
snowmanJS
window.open()写错了,应该写为window.open(b,"_blank","width=400,height=500,menubar=no,toolbar=no");