大神來幫忙看看?
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title> ?
? <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>? ?
? <script type="text/javascript"> ?
??? function openWindow(){
????? var a;
????? a=confirm("您好,您確認打開此窗口");
??? ?
????? if (a==true)
??????? {?? var b=prompt("您好,請輸入您要打開的窗口地址:");
????????? ?
???????? if(b!=null)?? ?
?????????? {window.open(b,'_blank','wdith=400px,height=500px,menubal=no,toolbal=no');}
???????????? else
??????????? {window.open('http//:www.17173.com','_blank');}
??? }else{window.open('http//:www.17173.com','_blank');}
????? ?
} ?
? </script>
?</head>
?<body>
????? <input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />
?</body>
</html>
我想在點擊取消的時候,跳到另外一個我設(shè)定好的網(wǎng)址,該怎么辦?
2015-10-24
另外,是menubar和nullbar,不是menubal和nullbel。
2015-08-29
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title> ?
? <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>? ?
? <script type="text/javascript"> ?
??? function openWindow(){
????? var a;
????? a=confirm("您好,您確認打開此窗口");
??? ?
????? if (a==true)
??????? {?? var b=prompt("您好,請輸入您要打開的窗口地址:");
????????? ?
???????? if(b!=null)?? ?
?????????? {window.open(b,'_blank','wdith=400px,height=500px,menubal=no,toolbal=no');}
???????????? else
??????????? {window.open('http//:www.17173.com','_blank');}
??? }
else
{
window.open('http://www.baidu.com','_blank');//這里改一下你要設(shè)定的網(wǎng)站。記住要加http:// 是冒號后雙//
}
????? ?
} ?
? </script>
?</head>
?<body>
????? <input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />
?</body>
</html>