为什么这样写消息对话框出不来了?
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>prompt</title>
<script type="text/javascript">
function rec(){
var score=prompt(成绩多少?); //score变量,用来存储用户输入的成绩值。 ;
if(score>=90);
{
document.write("你很棒!");
}
else
{
document.write("要努力了!");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />
</body>
</html>
为什么这样写消息对话框出不来了,直接就提示我"要努力了!"?