在sublime编写后测试时点击按钮没反应
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>prompt提问弹窗</title>
<script type="text/javascript">
function rec(){
var score=prompt("请输入成绩");
if(score>=90) {
document.write("你很棒!");
}
else if (score>=70) ;
{
document.write("不错呦!");
}
else if (score>=60) ;
{
document.write("要加油!");
}
else{
document.write("要努力了!");
}
}
</script>
</head>
<body>
<input type="button" name="button" value="点击测试成绩" onclick="rec()">
</body>
</html>
求指点哪里错了,为什么点击按钮的时候没有反应?