问答详情
源自: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">
function new(){
    alert("欢迎来到慕课网");
    window.open('http://www.imooc.com','_blank','width=600','height=400');
}

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


提问者:MYJY7 2017-08-08 09:54

个回答

  • 小岛农场主
    2017-08-08 10:56:08
    已采纳

    new 是一个关键字,不能用作函数名