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