为了账号安全,请及时绑定邮箱和手机立即绑定

点击按钮取消,如何不出现提示框

    <!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(isNaN(score))

     {

       alert("请输入数字");

      }

        else if(score<=0 || score>100)

     {

     alert("成绩是0-100,请重新输入");

        }

     else if(score>80)

     {

     alert("牛逼");

     }

        else if(score>60)

     {

     alert("可以");

     }

        else

     {

     alert("是个人才");

     }

      }

      </script>

    </head>

    <body>

        <input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />

    </body>

    </html>

    

正在回答

4 回答

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

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>


0 回复 有任何疑惑可以回复我~

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


0 回复 有任何疑惑可以回复我~

为什么呢,看提示就知道被你的判断给拦下了。

0 回复 有任何疑惑可以回复我~

  <!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 && score != "") {

                  if (isNaN(score)) {

                      alert("请输入数字");

                  }

                  else if (score <= 0 || score > 100) {

                      alert("成绩是0-100,请重新输入");

                  }

                  else if (score > 80) {

                      alert("牛逼");

                  }

                  else if (score > 60) {

                      alert("可以");

                  }

                  else {

                      alert("是个人才");

                  }

              }

          }

      </script>

    </head>

    <body>

        <input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />

    </body>

    </html>


2 回复 有任何疑惑可以回复我~
#1

小鱼鱼同学

大佬, 这才是正解。
2020-06-04 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

点击按钮取消,如何不出现提示框

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信