課程
/前端開發(fā)
/JavaScript
/JavaScript入門篇
var a=confirm("有一個窗口需要打開嗎?"); ? ? ? ?var b; ? ? ? ?if(a=true){ ? ? ? ? ? ?b=prompt("請輸入需要打開的網址","http://idcbgp.cn") ? ? ? ? ? ?window.open('http://idcbgp.cn','width=400,height=500') ? ? ? ?} ? ? ? ?else{ ? ? ? ? ? ? ? ? ? ?}?
2017-03-18
源自:JavaScript入門篇 2-7
正在回答
<!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://idcbgp.cn/");
if (dk!=null)
window.open(dk,'_blank','width=400','heigh=500','menuba=no','toolbar=no');
}
else{}
</script>
</head>
<body>
<input type="button" value="新窗口打開網站" onclick="openWindow()">
</body>
</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>
{var open=confirm("確認新建窗口打開網站嗎?");
if(open==true)
? ? // 新窗口打開時彈出確認框,是否打開
{var url=prompt("通過輸入對話框,確定打開的網址","http://idcbgp.cn");
if(url!=null)
? ? // 通過輸入對話框,確定打開的網址,默認為 http://idcbgp.cn/
{window.open(url,"_blank",'width=400px,height=500px,menubar=no,toolbar=no'); ? ?
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
else
{alert("bye!");}
} ??
舉報
JavaScript做為一名Web工程師的必備技術,本教程讓您快速入門
3 回答任務答案參考
2 回答簡單答案,僅供參考
1 回答編程挑戰(zhàn)參考答案!
5 回答自己的答案僅供參考
1 回答誰有標準一點的參考答案
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網安備11010802030151號
購課補貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網APP您的移動學習伙伴
掃描二維碼關注慕課網微信公眾號
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://idcbgp.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://idcbgp.cn");
if(url!=null)
? ? // 通過輸入對話框,確定打開的網址,默認為 http://idcbgp.cn/
{window.open(url,"_blank",'width=400px,height=500px,menubar=no,toolbar=no'); ? ?
}
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
else
{alert("bye!");}
} ??
else
{alert("bye!");}
? ? }