问答详情
源自:1-8 JavaScript-判断语句(if...else)

如果想要在HTML表单内填写成绩(score),然后用JavaScript判断语句条件该怎么弄?

比如在表单内填完数字“60”后,点击“提交”然后就返回结果“合格”?

提问者:LI_wh_523 2017-05-27 15:22

个回答

  • 慕粉2043302679
    2017-05-27 16:46:18
    已采纳

    <!DOCTYPE HTML>

    <html>

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <title>判断语句</title>

      <script type="text/javascript">

      function add()

      {var score=document.form1.score.value;

    if(score>=60)

    {

         document.write("很棒,成绩及格了。");

    }

      else

    {

    document.write("加油,成绩不及格。");

      }}

      </script>

    </head>

    <body>

    <form name="form1" action="index.html" method="post">

        总分:<input type="text" name="score" id="score" value="">

        <input type="button" name="sumbit" value="提交" onclick="add()"/>

    </form>

    </body>

    </html>


  • Darlene
    2017-05-27 17:13:23

    <!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>


  • 慕娘0531007
    2017-05-27 16:55:52

    <script type="text/javascript">
    function button(){
        var score;
        if(score>=60{
            alert("合格")
        }
        else{
            alert("不合格")
        }
    }
    </script>
    <input type="button" name="sumbit" value="提交" onclick="button()"