<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>if_else多重判断</title>
</head>
<body>
<script type="text/javascript">
var score;
score = prompt("请输入你的成绩");
if (score>=60);
{
alert("您的成绩及格了!!!");
}
else if(score>=80 && score<90);
{
alert("你的成绩很优秀")
}
else if(score>=70 && score<80);
{
alert("你的成绩良好,请继续保持!")
}
else if(score>=60 && score<70);
{
alert("你的成绩及格了!!")
}
else
{
alert("你的成绩未及格,请努力学习!!!");
}
</script>
</body>
</html>
1 回答
已采纳
聪明的汤姆
TA贡献112条经验 获得超33个赞
[object Object]
if () 后面不用加分号,还有注意一下代码格式
if () { } else if () { } else { }
望采纳
添加回答
举报
0/150
提交
取消