第12行的mes==""为什么替换成mes==null运行结果就不对了
第12行的mes==""为什么替换成mes==null运行结果就不对了
第12行的mes==""为什么替换成mes==null运行结果就不对了
2020-04-08
<!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>
举报