代碼有錯嗎?提交正確了為什么說網頁上有錯誤運行不了呢?
<!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("你想知道慕課網怎么走么?");
?if(mymessage==true)
?window.open('http://www.xianlaiwan.cn','_blank','width=600,height=400,top=100,left=0');
?else
?{alert("打開失??!");
?}
</script>
</head>
<body>
??? <input name="button" type="button" onClick="Wopen()" value="點擊我,打開新窗口!" / >
</body>
</html>
2016-11-10
confirm 你寫成comfirm
function Wopen(){} 你缺了個大括號
這樣就可以運行了^_^
沒看來你把例子綜合應用,挺會舉一反三嘛。我也剛學,要不一起做個伴~
2016-11-10
<script type="text/javascript">
? function Wopen(){
?var mymessage=confirm("你想知道慕課網怎么走么?");
?if(mymessage==true){
?window.open('http://www.xianlaiwan.cn','_blank','width=600,height=400,top=100,left=0');}
?else
?{alert("打開失?。?);
?}?
}
</script>
2016-11-10
單詞拼寫錯誤confirm寫成了comfirm,?var mymessage=comfirm("你想知道慕課網怎么走么?");