为了账号安全,请及时绑定邮箱和手机立即绑定

代码有错吗?提交正确了为什么说网页上有错误运行不了呢?

<!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.imooc.com','_blank','width=600,height=400,top=100,left=0');
 else
 {alert("打开失败!");
 }
</script>
</head>
<body>
    <input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >
</body>
</html>

正在回答

3 回答

<!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=confirm("你想知道慕课网怎么走么?");
 if(mymessage==true){
 window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0')}
 else
 {alert("打开失败!");
 } 
}
</script>
</head>
<body>
    <input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >
</body>
</html>
  1. confirm 你写成comfirm

  2. function Wopen(){} 你缺了个大括号

这样就可以运行了^_^

没看来你把例子综合应用,挺会举一反三嘛。我也刚学,要不一起做个伴~

2 回复 有任何疑惑可以回复我~


<script type="text/javascript">
  function Wopen(){
 var mymessage=confirm("你想知道慕课网怎么走么?");
 if(mymessage==true){
 window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0');}
 else
 {alert("打开失败!");
 } 

}
</script>

2 回复 有任何疑惑可以回复我~

单词拼写错误confirm写成了comfirm, var mymessage=comfirm("你想知道慕课网怎么走么?");

2 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

代码有错吗?提交正确了为什么说网页上有错误运行不了呢?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信