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>
if条件语句后没有分号
if(mymessage==true); 去掉分号;写代码一定要注意标点符号!!!!!!
要用英文的标点。
if(mymessage==true); 不要这个分号!和注意后面 document.write("你好man哦!");与 document.write("水货!"); 中分号的输入状态 在英文下输入。
代码在英文状态下输入!