<!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放在最后面,不起作用,不知道为什么???
你要把score==null放在最后也行,不过代码要这样写:
<script type="text/javascript">
function rec(){
var score; //score变量,用来存储用户输入的成绩值。
score = prompt("请输入值","在此输入成绩") ;
if(score>=90&&score!=null)
{
document.write("你很棒!");
}
else if(score>=75&&score!=null)
{
document.write("不错吆!");
}
else if(score>=60&&score!=null)
{
document.write("要加油!");
}
else if(score<60&&score!=null)
{
document.write("要努力了!");
}
else if(score==null){
document.write("你点击了取消!");
}
}
</script>
score==null,请问score后面加两个==是什么意思??一个=可以吗?
score!=null ,这里score后面的!又是什么意思呢?而且这里为什么又只有一个=了呢??求解答,谢谢,小弟刚学!
这也是我的疑问。。。麻烦哪位大神解答一下!
涉及了赋值转换的问题,它把null转换为“0"再判断了,所以要把else if(score<60 && score>=0)改为elsei f(score<60&&score>0||score==="0")就可以把输出“取消”的判定null移到最后了
javascript语言的执行顺序是从上到下
javascript语言的执行顺序是从上到下