打不開(kāi)對(duì)話框
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title>??
? <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>? ?
? <script type="text/javascript">??
? ? function openWebsite()
? ? {
? ? ? ? var web;
? ? ? ? var urlw=confirm("確認(rèn)打開(kāi)網(wǎng)址嗎?");
? ? ? ? if(urlw==true){
? ? ? ? ? web=prompt("請(qǐng)輸入網(wǎng)址",'http://idcbgp.cn/');
? ? ? ? ? window.open(web,width=400,height=500,menubar=no,toolbar=no);
? ? ? ? }
? ? ? ? else
? ? ? ? {
? ? ? ? ? ? alert("謝謝使用");
? ? ? ? }
? ? }
? </script>?
?</head>?
?<body>?
? <input type="button"? onClick="openwebsite()" value="新窗口打開(kāi)網(wǎng)站"/>?
?</body>
</html>
2018-04-05
知道了