代碼有錯(cuò)嗎?提交正確了為什么說網(wǎng)頁上有錯(cuò)誤運(yùn)行不了呢?
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>window.open</title>
<script type="text/javascript">
? function Wopen(){
?var mymessage=comfirm("你想知道慕課網(wǎng)怎么走么?");
?if(mymessage==true)
?window.open('http://idcbgp.cn','_blank','width=600,height=400,top=100,left=0');
?else
?{alert("打開失??!");
?}
</script>
</head>
<body>
??? <input name="button" type="button" onClick="Wopen()" value="點(diǎn)擊我,打開新窗口!" / >
</body>
</html>
2016-11-10
confirm 你寫成comfirm
function Wopen(){} 你缺了個(gè)大括號(hào)
這樣就可以運(yùn)行了^_^
沒看來你把例子綜合應(yīng)用,挺會(huì)舉一反三嘛。我也剛學(xué),要不一起做個(gè)伴~
2016-11-10
<script type="text/javascript">
? function Wopen(){
?var mymessage=confirm("你想知道慕課網(wǎng)怎么走么?");
?if(mymessage==true){
?window.open('http://idcbgp.cn','_blank','width=600,height=400,top=100,left=0');}
?else
?{alert("打開失?。?);
?}?
}
</script>
2016-11-10
單詞拼寫錯(cuò)誤confirm寫成了comfirm,?var mymessage=comfirm("你想知道慕課網(wǎng)怎么走么?");