请问为何没有弹窗,也打不开网页

来源:8-1 window对象

慕慕8881611

2017-09-15 19:01

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>window对象</title>

<script type="text/javascript">


function open(){

 alert("欢迎来到慕课网");

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

}

</script>

</head>

<body>

<form>

<input type="button" value="点击我,打开新窗口" onclick="open()"/>

</form>

</body>

</html>


写回答 关注

1回答

  • 我爱编程_
    2017-09-15 22:14:07
    已采纳

    第一:在width和height中间有两个逗号;

    第二:open或许是关键字之类的,你换个方法名就可以。


    慕慕8881...

    非常感谢!

    2017-09-20 13:03:56

    共 1 条回复 >

JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题