为什么第一个if后面,要用到两个等号(test==true)。第二个if后面,为什么要用叹号呢?null代表什么?(test!=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 test1=confirm("是否打开网页?");
if(test1==true){
var test2=prompt("是否打开这个网页?","http://www.imooc.com/");
if(test2!=null){
window.open('http://www.imooc.com/','width=400,height=500,menubar=no,toolbar=no');}
else{
alert("已取消打开imooc了!");
}
}
else{
alert("已取消!");
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>