第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

我代碼哪里錯(cuò)了嗎?為什么什么反應(yīng)都沒有

我代碼哪里錯(cuò)了嗎?為什么什么反應(yīng)都沒有

<!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 ht=confirm("是否打開網(wǎng)頁?");? ?if(ht==ture){? ? var wt=prompt("默認(rèn)打開網(wǎng)頁","http://idcbgp.cn");? ? ? window.open("http://idcbgp.cn","_blank", ? "width=400,height=500,menubar=no,toolbar=no") ?}? }? </script>??</head>??<body>? ?<input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />??</body></html>
查看完整描述

10 回答

已采納
?
冰封夕陽_o

TA貢獻(xiàn)2條經(jīng)驗(yàn) 獲得超3個(gè)贊

openwindow(),w小寫,ht==true,true寫錯(cuò)

查看完整回答
3 反對(duì) 回復(fù) 2016-08-01
?
ziom

TA貢獻(xiàn)948條經(jīng)驗(yàn) 獲得超1109個(gè)贊

<!DOCTYPE?html>
<html>
?<head>
??<title>?new?document?</title>??
??<meta?http-equiv="Content-Type"?content="text/html;?charset=gbk"/>???
??<script?type="text/javascript">??
??function?openWindow(){?<!--?openwindow?改為?openWindow?-->
??var?ht=confirm("是否打開網(wǎng)頁?");
???if(ht==true){?<!--?ture?改為?true?-->
????var?wt=prompt("默認(rèn)打開網(wǎng)頁","http://idcbgp.cn");
??????window.open("http://idcbgp.cn","_blank",???"width=400,height=500,menubar=no,toolbar=no")
?}
??}
??</script>?
?</head>?
?<body>?
?<input?type="button"?value="新窗口打開網(wǎng)站"?onclick="openWindow()"?/>?
?</body>
</html>


查看完整回答
2 反對(duì) 回復(fù) 2016-08-01
?
初雪2

TA貢獻(xiàn)8條經(jīng)驗(yàn) 獲得超20個(gè)贊

onclick="openWindow()"你寫的是大寫開頭的Window,而你的函數(shù)是小寫的window

查看完整回答
1 反對(duì) 回復(fù) 2016-08-01
  • 初雪2
    初雪2
    還有,你的ture寫錯(cuò)了,應(yīng)該寫成true,望采納!!
?
ICE_錦公子

TA貢獻(xiàn)1條經(jīng)驗(yàn) 獲得超0個(gè)贊

onclick點(diǎn)擊事件那里openWindow用的是大寫,而函數(shù)命名的時(shí)候你用的是小寫,對(duì)不上,所以就沒反應(yīng)咯 ?我也是初學(xué)者 ?

查看完整回答
反對(duì) 回復(fù) 2016-08-02
?
blovetu

TA貢獻(xiàn)319條經(jīng)驗(yàn) 獲得超234個(gè)贊

……拼寫錯(cuò)誤openwindow,true

查看完整回答
反對(duì) 回復(fù) 2016-08-02
?
snowmanJS

TA貢獻(xiàn)89條經(jīng)驗(yàn) 獲得超53個(gè)贊

JavaScript對(duì)變量和函數(shù)名是區(qū)分大小寫的,你定義函數(shù)是?openwindow(),所以你調(diào)用函數(shù)時(shí)的函數(shù)名應(yīng)該和你定義時(shí)的一致,所以應(yīng)該把onclick="openWindow()"改為onclick="openwindow()"

查看完整回答
反對(duì) 回復(fù) 2016-08-01
?
起名咋這么費(fèi)勁呢

TA貢獻(xiàn)39條經(jīng)驗(yàn) 獲得超10個(gè)贊

大小寫啊 親

查看完整回答
反對(duì) 回復(fù) 2016-08-01
?
nickylau82

TA貢獻(xiàn)128條經(jīng)驗(yàn) 獲得超67個(gè)贊

```javascript

? var openWindow = function(){

? var ht = confirm("是否打開網(wǎng)頁?");?

?if(ht){

? var wt = prompt("默認(rèn)打開網(wǎng)頁","http://idcbgp.cn");

window.open(wt,"_blank","width=400,height=500,menubar=no,toolbar=no");

}

?};


```

查看完整回答
反對(duì) 回復(fù) 2016-08-01
?
蜂之谷

TA貢獻(xiàn)564條經(jīng)驗(yàn) 獲得超863個(gè)贊

openwindow(),w小寫,ht==true,true寫錯(cuò)

查看完整回答
反對(duì) 回復(fù) 2016-08-01
?
剛毅87

TA貢獻(xiàn)345條經(jīng)驗(yàn) 獲得超309個(gè)贊

?<input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" /> 中onclick="openWindow()" 改為onclick="openwindow()"


查看完整回答
反對(duì) 回復(fù) 2016-08-01
  • 10 回答
  • 1 關(guān)注
  • 2607 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)