<!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>
new 用作函数名 是关键字 在 JavaScript 中,一些标识符是保留关键字,不能用作变量名或函数名
new是js中的关键字,不能用作函数名的,换一个函数名程序就能正常执行了。