为什么弹出框后点击确定和取消都没有任何显示了?
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>警告alert</title>
<script type="text/javascript">
var mamessage=confirm("你喜欢javascript吗?");
if(message==true)
{
document.write("很好,加油!");
}
else
{
document.write("js功能很强大,要学习哦!");
}
</script>
</head>
<body>
</body>