为什么点击取消按钮和右上角的叉到要加油哦,表示不理解
<!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&&score<=100)
{
document.write("你很棒!");
}
else if(score>=75&&score<90)
{
document.write("不错吆!");
}
else if(score>=60&&score<75)
{
document.write("你会更棒的");
}
else if(score>=0&&score<60)
{
document.write("要加油哦");
}
else
{
document.write("你输入放入数字有误,请重新输入");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />
</body>
</html>
看一看