问答详情
源自: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()
{
    var istrue=confirm("是否打开慕课网?");
    if(istrue==true)
    {
    window.open('http://www.imooc.com','_blank','width=600px,height=400px');
    }
}

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


提问者:sqz_彼岸花开 2017-03-14 23:05

个回答

  • 慕UI0997140
    2017-03-15 09:29:27
    已采纳

    new 用作函数名  是关键字 在 JavaScript 中,一些标识符是保留关键字,不能用作变量名或函数名

  • 慕粉2019226688
    2017-03-15 09:33:53

    new是js中的关键字,不能用作函数名的,换一个函数名程序就能正常执行了。