用VS和慕课自带的IDE出现不同结果
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow()
{
var judge = confirm("你是否要打开本网站?");
if(judge==true)
{
window.open('http://www.imooc.com/','_blank','width=400,height=500,menubar=no,toolbar=no');
}
else
{
var abc =prompt("请输入你想访问的链接:");
window.open(abc);
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
这个代码在慕课网上面输入是可以运行的,但是在vs2017上面输入同样的代码,保存为HTML文件,则会出现这个现象