编程练习求教
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function itt(){
var iss=confirm('是否打开这个种子站呢?');
if(iss=true){
window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no')
}else{
document.write("爱打不打");
};
}
// 新窗口打开时弹出确认框,是否打开
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
</script>
</head>
<body>
<input type="button" value="WEBSITE入口区" onclick="itt()" />
</body>
</html>
上面是代码部分,我的理解是正常调用函数的话confirm会根据用户选择确定或者取消返回布尔值吧,也就是true或者false,但是问题就是为什么我点击取消的时候还会跳转到新的窗口呢?劳烦明白的给讲解的细致点,我语文理解能力有限,谢谢喽~