请问一下是哪里出问题了呢?为什么点确定后没有出现语句?
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>系好安全带,准备启航</title>
<script type="text/javascript">
document.write("系好安全带,准备启航--目标JS"+"<br>")
function duihua(){
var txt=confirm("准备好了吗?");
}
if(txt==true)
{ document.write("准备好了,起航吧");}
else
{ document.write("请重新学习哟");}
</script>
</head>
<body>
<input type="button" value="准备好了吗?" onclick="duihua()";>
</input>
</body>
</html>