为什么不能出来我输入的字
function rec(){
var mymessage=confirm("你是超人吗?");
if(mymessage==true);
{
document.write("你好man哦!");
}
else
{
document.write("水货!");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,弹出确认对话框" />
</body>
</html>