JavaScript进阶篇 1-2编程练习
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>系好安全带,准备启航</title>
<!--引入外部文件的方式-->
<script type="text/javascript" >
//多行注释
//在页面中显示文字
document.write("系好安全带,准备起航--目标JS")
function zhangwo () {
var aa=confirm("准备好了吗?");
if (aa=true)
{ document.write("准备好了,起航吧!");}
else
{ document.write("去学习JS入门篇");}
}
//页面中弹出提示框
//单行注释
</script>
</head>
<body>
<input name="buttom" type="button" onclick="zhangwo()"value="点击我,弹出对话框"/>
</body>
</html>
为什么我点击取消还是会显示“准备好了,起航吧!"?