課程
/前端開發(fā)
/JavaScript
/JavaScript入門篇
需要最簡(jiǎn)化的代碼
2018-09-08
源自:JavaScript入門篇 2-7
正在回答
你那個(gè)第一個(gè)再見怎么調(diào)試能讓它出現(xiàn)?
<!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("確認(rèn)新窗口打開網(wǎng)站?");
? ? ? ? // 新窗口打開時(shí)彈出確認(rèn)框,是否打開
? ? ? ?if(open==true)
? ? ? ?{
? ? ? ? ? ?var url=prompt("將打開以下網(wǎng)址:","http://idcbgp.cn/");
? ? ? ? ? ?// 通過輸入對(duì)話框,確定打開的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
? ? ? ? ? ?if(url!=null)
? ? ? ? ? ?{
? ? ? ? ? ? ? ?window.open(url,'_blank','width=400px,height=500px,menubar=no,toolbar=no')
? ? ? ? ? ? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ? ? ? ? ? }
? ? ? ? ? ? else
? ? ? ? ? ? {
? ? ? ? ? ? ? alert("再見!");
? ? ? ? ? ? ?}
? ? ? ? }
? ? ? ? else
? ? ? ? ? alert("再見!");
? ?}?
? </script>?
?</head>?
?<body>?
? <input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>
<script?type="text/javascript"> ??function?openWindow(){ ????if(confirm("是否打開新窗口?")==true){ ????//?新窗口打開時(shí)彈出確認(rèn)框,是否打開 ????????var?url=prompt("請(qǐng)輸入網(wǎng)址:","http://idcbgp.cn") ????//?通過輸入對(duì)話框,確定打開的網(wǎng)址,默認(rèn)為?http://idcbgp.cn/ ????????window.open(url,"_blank","width=400,height=500,menubar=no,toolbar=no") ????//打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。 ????} ??} </script>
<script?type="text/javascript">??function?openWindow(){????if(confirm("是否打開新窗口?")==true){????//?新窗口打開時(shí)彈出確認(rèn)框,是否打開????????var?url=prompt("請(qǐng)輸入網(wǎng)址:","http://idcbgp.cn")????//?通過輸入對(duì)話框,確定打開的網(wǎng)址,默認(rèn)為?http://idcbgp.cn/????????window.open(url,"_blank","width=400,height=500,menubar=no,toolbar=no")????//打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。????}??}</script>
?function openWindow(){??? if (confirm("是否打開窗口")==true){??? // 新窗口打開時(shí)彈出確認(rèn)框,是否打開???? b=prompt("請(qǐng)輸入網(wǎng)址","http://idcbgp.cn/")??? // 通過輸入對(duì)話框,確定打開的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/??????? if (b){??????? window.open(b,'_blank','width=400,height=500,menubar=no,toolbar=no')}??????? else??????? {alert("byebye");}??? }??? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。??? else???? {alert("byebye");}
function?openWindon(){? if(confirm("確定打開新窗口嗎?")){ var?url?=?prompt("請(qǐng)輸入一個(gè)網(wǎng)址","http://idcbgp.cn/");?? window.open(?url,"_blank","toolbar=no,?menubar=no,?scrollbars=yes,??width=400,?height=400"); } }
function mywindow(){
? ? ? ??
? ? ? ? var mymessage=confirm("是否打開");
? ? ? ? if(mymessage=true){
? ? ? ? ? ? window.open("http://idcbgp.cn/","_blank","width=400,height=500");
? ? }
慕田峪8683684 提問者
舉報(bào)
JavaScript做為一名Web工程師的必備技術(shù),本教程讓您快速入門
3 回答2-7編程練習(xí)
5 回答求源代碼(2-7編程練習(xí))
2 回答2-7編程練習(xí),哪里不對(duì)?
3 回答2-7練習(xí)
1 回答2-7練習(xí)
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2018-09-29
你那個(gè)第一個(gè)再見怎么調(diào)試能讓它出現(xiàn)?
2018-09-21
<!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("確認(rèn)新窗口打開網(wǎng)站?");
? ? ? ? // 新窗口打開時(shí)彈出確認(rèn)框,是否打開
? ? ? ?if(open==true)
? ? ? ?{
? ? ? ? ? ?var url=prompt("將打開以下網(wǎng)址:","http://idcbgp.cn/");
? ? ? ? ? ?// 通過輸入對(duì)話框,確定打開的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
? ? ? ? ? ?if(url!=null)
? ? ? ? ? ?{
? ? ? ? ? ? ? ?window.open(url,'_blank','width=400px,height=500px,menubar=no,toolbar=no')
? ? ? ? ? ? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ? ? ? ? ? }
? ? ? ? ? ? else
? ? ? ? ? ? {
? ? ? ? ? ? ? alert("再見!");
? ? ? ? ? ? ?}
? ? ? ? }
? ? ? ? else
? ? ? ?{
? ? ? ? ? alert("再見!");
? ? ? ? }
? ?}?
? </script>?
?</head>?
?<body>?
? <input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>
2018-09-11
2018-09-11
2018-09-09
?function openWindow(){
??? if (confirm("是否打開窗口")==true){
??? // 新窗口打開時(shí)彈出確認(rèn)框,是否打開
???? b=prompt("請(qǐng)輸入網(wǎng)址","http://idcbgp.cn/")
??? // 通過輸入對(duì)話框,確定打開的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
??????? if (b){
??????? window.open(b,'_blank','width=400,height=500,menubar=no,toolbar=no')}
??????? else
??????? {alert("byebye");}
??? }
??? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
??? else
???? {alert("byebye");}
2018-09-09
2018-09-08
function mywindow(){
? ? ? ??
? ? ? ? var mymessage=confirm("是否打開");
? ? ? ? if(mymessage=true){
? ? ? ? ? ? window.open("http://idcbgp.cn/","_blank","width=400,height=500");
? ? ? ? }
? ? }