毕竟折耳猫
2016-04-16 09:37
<!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>=75)
{
document.write("不错吆!");
}
else if(score>=60)
{
document.write("要加油!");
}
else
{
document.write("要努力了!");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />
</body>
</html>
else
{
alert(score);//这里有空值但是你得给他显示出来。
document.write("要努力了!");
}
同问啊
是返回了null了的,但是最后是else判断的,就算取消了还是会显示“要努力了”,所以在使用prompt时推荐先加个判断其是否null的if语句。
JavaScript入门篇
739817 学习 · 9566 问题
相似问题