為什么網(wǎng)站打開是空白的?
?function openWindow()
? ? {
? ? ? ? var open=confirm("是否打開新窗口?")//新窗口打開時彈出確認框,是否打開
? ? ? ? if(open==true)
? ? ? ? {
? ? ? ? ? ? var pro=prompt("輸入你要打開的網(wǎng)址:","http://idcbgp.cn/");
? ? ? ? ? ? if(pro!=null)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? ?window.open(pro,"_blank",'width=400,height=500,menubar=no,toolbar=no');
? ? ? ? ? ? }
? ? ? ? ? ? else
? ? ? ? ? ? {
? ? ? ? ? ? ? ? alert("再見!")
? ? ? ? ? ? }
? ? ? ? ? ?
? ? ? ? ? ? ?// 通過輸入對話框,確定打開的網(wǎng)址,默認為 http://idcbgp.cn/
? ? ? ? }
? ? ? ? else
? ? ? ? {
? ? ? ? ? ? alert("點擊確定退出");
? ? ? ? }?
? ? }
2017-11-02
"http://idcbgp.cn/") 冒號要是英文的啊老哥