第12行的mes==""为什么替换成mes==null运行结果就不对了
因为你在输入框什么都不输入的时候发送的字符串是“”而不是null,null代表不存在,但实际上你在输入框里是有东西的,“”!= null
<!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 open=confirm("是否打开网页?");
if(open==true){
var mes=prompt("请输入要访问的网址:");
if(mes=="")
{
window.open('http://www.imooc.com/','_blank','width=400,height=500,menubar=no,toolbar=no');
}
else
{
window.open('https://www.baidu.com/','_blank','width=400,height=500,menubar=no,toolbar=no');
}
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>