<!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; //score变量,用来存储用户输入的成绩值。
score = prompt("请输入你的成绩:")
if(score>=90)
{
document.write("你很棒!");
}
else if(score==null||score<0)
{
alert=prompt("请重新输入");
} ;
else if(score>=75)
{
document.write("不错吆!");
}
else if(score>=60)
{
document.write("要加油!");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />
</body>
</html>
else if(score==null||score<0)
{
alert=prompt("请重新输入");
}
你这步将重新输入的值赋值给了变量 alert,当然就没办法再用 if 语句判断变量 score 的值了哦!
score = prompt("请输入你的成绩:")
这边少个分号
{
alert=prompt("请重新输入");
} ;
这边又多个分号
我这边试了 你的代码没问题鸭
<!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; //score变量,用来存储用户输入的成绩值。
score = prompt("输入你的成绩:","score");
if(score>=90)
{
document.write("你很棒!");
}
else if(score>=75)
{
document.write("不错吆!");
}
else if(score>=60)
{
document.write("要加油!");
}
else if(score<60&&score>0)
{
document.write("要努力了!");
}
else
{
alert("请重新输入");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />
</body>
</html>
function rec() {
var score; //score变量,用来存储用户输入的成绩值。
score = prompt("请输入你的成绩:");
if (score >= 90) {
document.write("你很棒!");
} else if (score == null || score < 0) {
alert = prompt("请重新输入");
} else if (score >= 75) {
document.write("不错吆!");
} else if (score >= 60) {
document.write("要加油!");
} else {
document.write("太差了,从头再来吧!");
}
}
你测试的时候输入的分数在0-60分之间吧?你没有写如果在这个区间要怎么做
{
alert=prompt("请重新输入");
} ;
你这句后面多了分号呀,去掉