prompt返回null值
<!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==null)
{
document.write("你点击了取消!");
}
else 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("要努力了,小伙子");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,请输入成绩!" />
</body>
</html>
这里如果把score==null放在最后面,不起作用,不知道为什么???