为什么这个没反应的?

来源:8-1 window对象

Fornow

2015-10-10 16:23

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>window对象</title>
<script type="text/javascript">
   
   function myopen(){
           alert("欢迎来到慕课网")
           window.open('http://www.imooc.com','_blank','width=600 height=400');
       }
</script>
</head>
<body>
<form>
<input type="button" value="点击我,打开新窗口" onclick="myopen()" />
</form>
</body>
</html>

为什么没反应的?


写回答 关注

1回答

  • Perona
    2015-10-10 16:51:54
    已采纳
     window.open('http://www.imooc.com','_blank','width=600 height=400');

    这里有一处的逗号被敲成中文逗号,改成英文即可

    window.open('http://www.imooc.com','_blank','width=600 height=400');


    Fornow

    非常感谢!谢谢

    2015-10-11 00:14:12

    共 1 条回复 >

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题