本題參考答案
var a=confirm("有一個窗口需要打開嗎?"); ? ? ? ?var b; ? ? ? ?if(a=true){ ? ? ? ? ? ?b=prompt("請輸入需要打開的網址","http://www.xianlaiwan.cn") ? ? ? ? ? ?window.open('http://www.xianlaiwan.cn','width=400,height=500') ? ? ? ?} ? ? ? ?else{ ? ? ? ? ? ? ? ? ? ?}?
2017-03-18
舉報
2017-03-21
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<script type="text/javascript">
function openWindow()
{
var newblank=confirm("是否打開新網址");
if (newblank==true) {
var dk=prompt("請輸入一個網址","http://www.xianlaiwan.cn/");
if (dk!=null)
{
window.open(dk,'_blank','width=400','heigh=500','menuba=no','toolbar=no');
}
else{}
}
else{}
}
</script>
</head>
<body>
<input type="button" value="新窗口打開網站" onclick="openWindow()">
</body>
</html>
2017-03-18
<!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 open=confirm("請問是否打開新窗口?");
? ? if(open==true)
? ? {
? ? ? ? var url=prompt("請輸入網址");
? ? ? ? if(url!=null)
? ? ? ? {
? ? ? ? ? ? window.open(url,'_blank','width:400,height:500,menubar=no,toolbar=no')
? ? ? ? }
? ? ? ? else
? ? ? ? {
? ? ? ? ? ? alert("你沒有輸入網址!")
? ? ? ? }
? ? }
? ? else
? ? {
? ? ? ? alert("再見!")
? ? }
? }
? </script>?
?</head>?
?<body>?
?<input type="button" value="新窗口打開網站" onclick="openWindow()" />?
?</body>
</html>
2017-03-18
function openWindow()
{var open=confirm("確認新建窗口打開網站嗎?");
if(open==true)
? ? // 新窗口打開時彈出確認框,是否打開
{var url=prompt("通過輸入對話框,確定打開的網址","http://www.xianlaiwan.cn");
if(url!=null)
? ? // 通過輸入對話框,確定打開的網址,默認為 http://www.xianlaiwan.cn/
{window.open(url,"_blank",'width=400px,height=500px,menubar=no,toolbar=no'); ? ?
}
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
else
{alert("bye!");}
} ??
else
{alert("bye!");}
? ? }