问答详情
源自:8-1 window对象

点击按钮没有打开新窗口

请帮我看看哪里出问题?

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>window对象</title>
<script type="text/javascript">
alert("欢迎来到慕课网");

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

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


提问者:DogMan 2017-08-17 20:43

个回答

  • 慕村8732623
    2017-08-18 11:01:10

    open是window的方法,再定义就冲突了,可以换个函数名

  • DogMan
    2017-08-17 20:53:13

    open是关键保留字吗?换了函数名就解决了