我这样写为什么不行
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>prompt</title>
<script type="text/javascript">
function rec(){
if(prompt("请输入你的分数:")>=90)
{
document.write("你很棒!");
}
else if(prompt("请输入你的分数:")>=75)
{
document.write("不错吆!");
}
else if(prompt("请输入你的分数:")>=60)
{
document.write("要加油!");
}
else if(prompt("请输入你的分数:")<60)
{
document.write("要努力了!");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />
</body>
</html>