问答详情
源自:2-4 JavaScript-提问(prompt 消息对话框)

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放在最后面,不起作用,不知道为什么???

提问者:ven_d 2016-03-30 10:09

个回答

  • 策神
    2016-03-30 12:32:51
    已采纳

    你要把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>


  • tracylovetmac1
    2016-06-18 11:04:45

    score==null,请问score后面加两个==是什么意思??一个=可以吗?

    score!=null ,这里score后面的!又是什么意思呢?而且这里为什么又只有一个=了呢??求解答,谢谢,小弟刚学!

  • 顾五丑
    2016-03-30 13:47:12

    这也是我的疑问。。。麻烦哪位大神解答一下!

  • 璎珞绘梨衣
    2016-03-30 10:44:43

    涉及了赋值转换的问题,它把null转换为“0"再判断了,所以要把else if(score<60 && score>=0)改为elsei f(score<60&&score>0||score==="0")就可以把输出“取消”的判定null移到最后了

  • qq_晨曦_23
    2016-03-30 10:39:54

    javascript语言的执行顺序是从上到下

  • xichao0024
    2016-03-30 10:38:05

    javascript语言的执行顺序是从上到下