弹不出对话框
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>confirm</title>
<script type="text/javascript">
function rec(){
var mymessage=confirm("你的性别!");
if(mymessage==true)
{
document.write("你是女士!");
}
else
{
document.write("你是男士!");
}
}
</script>
</head>
<body>
<input name="button" type="button" onclick="rec()" value="点击我,弹出确认对话框" />
</body>
</html>
给位帮忙看看我哪写错了,为什么弹不出对话框,每次一点击“点击我,弹出对话框”就直接出“你是男士”这是为什么