課程
/前端開發(fā)
/JavaScript
/JavaScript入門篇
不是特別懂
2019-05-16
源自:JavaScript入門篇 2-7
正在回答
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title>??
? <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>? ?
? <script type="text/javascript">??
? ?function openWindow(){?
? ? // 新窗口打開時(shí)彈出確認(rèn)框,是否打開
? ? // 通過輸入對(duì)話框,確定打開的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ??
? ? var openWindow1=confirm("請(qǐng)問是否打開");
? ? if(openWindow1==true){
? ? ? ? var openWindow2=prompt("請(qǐng)輸入你要打開的網(wǎng)址,"+"默認(rèn)網(wǎng)址為http://idcbgp.cn/");
? ? ? ? if(openWindow2!=null){
? ? ? ? ? ?window.open(openWindow2,'_blank','width=400px,height=500px,menubar=no,toolbar=no');}
? ? ? ? else{
? ? ? ? ? ?window.open('http://idcbgp.cn/','_blank','width=400px,height=500px,menubar=no,toolbar=no');}
? ? }
? ? else{
? ? ? ? window.close();
? ? ? ?
? ?}
? </script>?
?</head>?
?<body>?
? <input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>
<pre>? //測(cè)試,亂寫的
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
for(int i = 0 ; i< 10 ;++i)
????for(int j =0 ; j < i ; ++ j)
????????printf(%d*%d=%d , i , j , i*j);
}
</pre>
重置代碼后,把這段加進(jìn)去就行了,注意字符串與變量的區(qū)別
??? function openWindow()
{??????? var newWin ;??????? if ( confirm("將打開新對(duì)話框") == true)??????? {??????????? newWin = prompt("輸入要打開的網(wǎng)址,默認(rèn)是126","www.126.com");??????? }??????? window.open(newWin , '_blank' ,'width=400,height=500,menubar=no,toolbar=no' );??? }
慕標(biāo)2283219
<script type="text/javascript">
function?openWindow() { var?affirm=confirm("是否打開新窗口?") if(affrim==true) { ??window.open('http://idcbgp.cn','_blank','width=400,height=500,menubar=no,toolbar=no'); } }
</script>
<body>
<input name="button" type="button" onClick="openWindow()"value="在新窗口打開">
</body>
<script type="text/javascript>
var mytxt = confirm("是否在新窗口打開?");
if(mytxt=true){
window.open("http://idcbgp.cn","_blank","width=400,height=500,menubar=no,toolbar=no");
舉報(bào)
JavaScript做為一名Web工程師的必備技術(shù),本教程讓您快速入門
2 回答就這一節(jié)的內(nèi)容。。。
1 回答寫了代碼后提交后不顯示內(nèi)容
1 回答代碼不好寫
6 回答修改代碼內(nèi)容
5 回答innerHTML這節(jié),代碼寫的沒錯(cuò),為什么右側(cè)不顯示?
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)
2019-05-22
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title>??
? <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>? ?
? <script type="text/javascript">??
? ?function openWindow(){?
? ? // 新窗口打開時(shí)彈出確認(rèn)框,是否打開
? ? // 通過輸入對(duì)話框,確定打開的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ??
? ? var openWindow1=confirm("請(qǐng)問是否打開");
? ? if(openWindow1==true){
? ? ? ? var openWindow2=prompt("請(qǐng)輸入你要打開的網(wǎng)址,"+"默認(rèn)網(wǎng)址為http://idcbgp.cn/");
? ? ? ? if(openWindow2!=null){
? ? ? ? ? ?window.open(openWindow2,'_blank','width=400px,height=500px,menubar=no,toolbar=no');}
? ? ? ? else{
? ? ? ? ? ?window.open('http://idcbgp.cn/','_blank','width=400px,height=500px,menubar=no,toolbar=no');}
? ? }
? ? else{
? ? ? ? window.close();
? ? }
? ? ? ?
? ?}
? </script>?
?</head>?
?<body>?
? <input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>
2019-05-18
<pre>? //測(cè)試,亂寫的
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
for(int i = 0 ; i< 10 ;++i)
????for(int j =0 ; j < i ; ++ j)
????????printf(%d*%d=%d , i , j , i*j);
}
</pre>
2019-05-18
重置代碼后,把這段加進(jìn)去就行了,注意字符串與變量的區(qū)別
??? function openWindow()
{
??????? var newWin ;
??????? if ( confirm("將打開新對(duì)話框") == true)
??????? {
??????????? newWin = prompt("輸入要打開的網(wǎng)址,默認(rèn)是126","www.126.com");
??????? }
??????? window.open(newWin , '_blank' ,'width=400,height=500,menubar=no,toolbar=no' );
??? }
2019-05-17
<script type="text/javascript">
</script>
<body>
<input name="button" type="button" onClick="openWindow()"value="在新窗口打開">
</body>
2019-05-17
<script type="text/javascript>
var mytxt = confirm("是否在新窗口打開?");
if(mytxt=true){
window.open("http://idcbgp.cn","_blank","width=400,height=500,menubar=no,toolbar=no");
}
</script>