課程
/前端開(kāi)發(fā)
/JavaScript
/JavaScript入門(mén)篇
http://idcbgp.cn/code/1642
2016-11-29
源自:JavaScript入門(mén)篇 2-7
正在回答
上面的代碼試了沒(méi)有?
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title> ?
? <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> ??
? <script type="text/javascript"> ?
? ? function openWindow(){
? ? ? ? // 新窗口打開(kāi)時(shí)彈出確認(rèn)框,是否打開(kāi)
? ? ? ? var meg=confirm("確認(rèn)打開(kāi)新窗口嗎");
? ? ? ? if(meg==true){
? ? ? ? // 通過(guò)輸入對(duì)話框,確定打開(kāi)的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
? ? ? ? //打開(kāi)的窗口要求,寬400像素,高500像素,無(wú)菜單欄、無(wú)工具欄。
? ? ? ? ? ? window.open('http://idcbgp.cn',
? ? ? ? ? ? 'width=400px,height=500px,menubar=no,toolbar=no');
? ? ? ? }
? ? }
? </script>?
?</head>?
?<body>?
?<input type="button" value="新窗口打開(kāi)網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>
這是我寫(xiě)的代碼 ?這個(gè)很簡(jiǎn)單的 ?你寫(xiě)的有點(diǎn)復(fù)雜了
慕粉4370907 提問(wèn)者
混世小魔王ok 回復(fù) 慕粉4370907 提問(wèn)者
慕粉4370907 提問(wèn)者 回復(fù) 混世小魔王ok
? // 新窗口打開(kāi)時(shí)彈出確認(rèn)框,是否打開(kāi)??
? var mysrt = confirm("是否打開(kāi)網(wǎng)頁(yè)");
? ? ? ? ? ? if (mysrt == true) {
? ? ? ? ? ? ? ??? ? // 通過(guò)輸入對(duì)話框,確定打開(kāi)的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
????????????????? ?var my = prompt("請(qǐng)輸入網(wǎng)址", "http://idcbgp.cn/");
?
? ? ? ? ? ? ? ? ? ? if (my != null) {
? ? //打開(kāi)的窗口要求,寬400像素,高500像素,無(wú)菜單欄、無(wú)工具欄。
? ? ? ? ? ? ? ? ? ? ? ? window.open(my, 'http://idcbgp.cn', '_blank', 'width=400px,height=500px,menubar=no,toolbar=no')
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? else{
? ? ? ? ? ? ? ? ? ? ? ? ? ? alert("再見(jiàn)");
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? else {
? ? ? ? ? ? ? ? alert("再見(jiàn)!");
? ??
舉報(bào)
JavaScript做為一名Web工程師的必備技術(shù),本教程讓您快速入門(mén)
2 回答為什么這段代碼運(yùn)行后輸入新的網(wǎng)址,打開(kāi)的還是慕課網(wǎng)的網(wǎng)址,問(wèn)題出在哪?
4 回答為什么打不開(kāi)慕課網(wǎng)站
5 回答請(qǐng)問(wèn)我 這樣為什么當(dāng)在最后是不能打開(kāi)默認(rèn)的慕課網(wǎng)
5 回答麻煩請(qǐng)問(wèn)我的代碼為什么打開(kāi)的不是慕課的網(wǎng)址
5 回答為什么我的代碼運(yùn)行后沒(méi)有打開(kāi)網(wǎng)址
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2016-11-29
上面的代碼試了沒(méi)有?
2016-11-29
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title> ?
? <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> ??
? <script type="text/javascript"> ?
? ? function openWindow(){
? ? ? ? // 新窗口打開(kāi)時(shí)彈出確認(rèn)框,是否打開(kāi)
? ? ? ? var meg=confirm("確認(rèn)打開(kāi)新窗口嗎");
? ? ? ? if(meg==true){
? ? ? ? // 通過(guò)輸入對(duì)話框,確定打開(kāi)的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
? ? ? ? //打開(kāi)的窗口要求,寬400像素,高500像素,無(wú)菜單欄、無(wú)工具欄。
? ? ? ? ? ? window.open('http://idcbgp.cn',
? ? ? ? ? ? 'width=400px,height=500px,menubar=no,toolbar=no');
? ? ? ? }
? ? }
? </script>?
?</head>?
?<body>?
?<input type="button" value="新窗口打開(kāi)網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>
這是我寫(xiě)的代碼 ?這個(gè)很簡(jiǎn)單的 ?你寫(xiě)的有點(diǎn)復(fù)雜了
2016-11-29
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title> ?
? <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> ??
? <script type="text/javascript"> ?
? ? function openWindow(){
? // 新窗口打開(kāi)時(shí)彈出確認(rèn)框,是否打開(kāi)??
? var mysrt = confirm("是否打開(kāi)網(wǎng)頁(yè)");
? ? ? ? ? ? if (mysrt == true) {
? ? ? ? ? ? ? ??? ? // 通過(guò)輸入對(duì)話框,確定打開(kāi)的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
????????????????? ?var my = prompt("請(qǐng)輸入網(wǎng)址", "http://idcbgp.cn/");
?
? ? ? ? ? ? ? ? ? ? if (my != null) {
? ? //打開(kāi)的窗口要求,寬400像素,高500像素,無(wú)菜單欄、無(wú)工具欄。
? ? ? ? ? ? ? ? ? ? ? ? window.open(my, 'http://idcbgp.cn', '_blank', 'width=400px,height=500px,menubar=no,toolbar=no')
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? else{
? ? ? ? ? ? ? ? ? ? ? ? ? ? alert("再見(jiàn)");
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? else {
? ? ? ? ? ? ? ? alert("再見(jiàn)!");
? ? ? ? ? ? }
?
? ? ? ? }
? ??
? </script>?
?</head>?
?<body>?
?<input type="button" value="新窗口打開(kāi)網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>