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

判断逻辑 到底是什么问题运行不了

<!DOCTYPE html>

<html>

 <head>

  <title> 事件</title>  

  <script type="text/javascript">

   function count(){

       var numone=document.getElementById("txt1").value;

       var txt=document.getElementById("select").value;

       var numtwo=document.getElementById("txt2").value;

      

       var result="";

       if(txt=="+"){

         result=parseInt(numone)+parseInt(numtwo); 

          break;

       }

       if(txt=="-"){

         result=parseInt(numone)-parseInt(numtwo);

          break;

       }

       if(txt=="*"){

         result=parseInt(numone)*parseInt(numtwo);

          break;

       }

       if(txt=="/"){

         result=parseInt(numone)/parseInt(numtwo);

          break;

       }

       document.getElementById("fruit").value=result;

    

    

   }

  </script> 

 </head> 

 <body>

   <input type='text' id='txt1' /> 

   <select id='select'>

<option value='+'>+</option>

<option value="-">-</option>

<option value="*">*</option>

<option value="/">/</option>

   </select>

   <input type='text' id='txt2' /> 

   <input type='button' value=' = ' onclick="count()"/> <!--通过 = 按钮来调用创建的函数,得到结果--> 

   <input type='text' id='fruit' />   

 </body>

</html>


正在回答

5 回答

这个题用switch比较方便,问题一楼说过了,去掉break就可以

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

<!DOCTYPE html>

<html>

 <head>

  <title> 事件</title>  

  <script type="text/javascript">

   function count(){

    var num1 = document.getElementById('txt1').value

    var num2 = document.getElementById('txt2').value

    var char = document.getElementById('select').value

    var num;

    switch(char)

    {

        case "+":

      num =parseInt(num1)+parseInt(num2); break;

       case "-":

           num = parseInt(num1)-parseInt(num2); break;

           case "*": 

               num = parseInt(num1)*parseInt(num2);break;

               case "/":

                   num =parseInt(num1)/parseInt(num2); break;

    }

    document.getElementById('fruit').value=num;

   }

  </script> 

 </head> 

 <body>

   <input type='text' id='txt1' /> 

   <select id='select'>

<option value="+">+</option>

<option value="-">-</option>

<option value="*">*</option>

<option value="/">/</option>

   </select>

   <input type='text' id='txt2' /> 

   <input type='button' value=' = ' onclick="count()"/> <!--通过 = 按钮来调用创建的函数,得到结果--> 

   <input type='text' id='fruit' />   

 </body>

</html>


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

function count(){

       

    //获取第一个输入框的值

    var txt1 = document.getElementById("txt1").value;

//获取第二个输入框的值

var txt2 = document.getElementById("txt2").value;

//获取选择框的值

var select = document.getElementById("select").value;

//获取通过下拉框来选择的值来改变加减乘除的运算法则

var fruit;

switch(select){

    case '+':

        fruit = parseInt(txt1) + parseInt(txt2); 

        break;

    case '-':

        fruit = txt1 - txt2; 

        break;

    case '*':

        fruit = txt1 * txt2; 

        break;

    case '/':

        fruit = txt1 / txt2; 

        break;

}

    

    //设置结果输入框的值 

    document.getElementById("fruit").value = fruit;

   }



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

这是我的练习switch写法


<input type="text" name="bb" id="bb" />

<input type="text" name="cc" id="cc"  />

<select id='select'>

    <option value='+'>+</option>

    <option value="-">-</option>

    <option value="*">*</option>

    <option value="/">/</option>

   </select>

<a href="javascript:void(0)" onclick="qi()">计算</a>

<input type="text" name="gg" id="gg"  />

<script type="text/javascript">

  function qi(){

    var b,c,e,g,v;

    b=document.getElementById("bb").value;

    c=document.getElementById("cc").value;

    e=document.getElementById("select").value;

    g=document.getElementById("gg");

    switch(e)

        {

            case "+":

              g.value=parseInt(b)+parseInt(c);

              break;

            case "-":

              g.value=parseInt(b)-parseInt(c);

              break;

            case "*":

              g.value=parseInt(b)*parseInt(c);

              break;

            case "/":

              g.value=parseInt(b)/parseInt(c);

              break;

        }

  }

</script>


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

错误是因为你加了 break; 去掉break;就正常了!

IF判断 不需要加break; ,switch判断才需要

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

举报

0/150
提交
取消

判断逻辑 到底是什么问题运行不了

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