问答详情
源自:6-11 编程练习

求大佬看一下为什么结果是错误

<!DOCTYPE html>

<html>

 <head>

  <title> 事件</title>  

  <script type="text/javascript">

   function count(){

       var a;

       var b=document.getElementById("tex1");

       var c=document.getElementById("tex2");

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

       switch(d){

           case"+":a=b+c;

           break;

           case"-":a=b-c;

           break;

           case"*":a=b*c;

           break;

           case"/":a=b/c;

           break;

       }

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

   }

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


提问者:蓝澈清 2018-07-23 10:17

个回答

  • Closers
    2018-07-23 10:35:48
    已采纳

    <!DOCTYPE html>

    <html>

     <head>

      <title> 事件</title>  

      <script type="text/javascript">

       function count(){

           

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

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

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

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

    //获取选择框的值

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

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

    switch(c){

     case "+":

      //设置结果输入框的值    

     document.getElementById("fruit").value=parseInt(a)+parseInt(b);

     break;

     case "-":

     document.getElementById("fruit").value=parseInt(a)-parseInt(b);

          break;

           case "*":

     document.getElementById("fruit").value=parseInt(a)*parseInt(b);

          break;

           case "/":

     document.getElementById("fruit").value=parseInt(a)/parseInt(b);

          break;

           

    }

       }

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

    你可以参考下

  • Closers
    2018-07-23 14:13:32

    一个题目有很多方法,有的方法简单有的方法繁琐,你可以多尝试一下改进代码

  • Closers
    2018-07-23 14:10:52

    我只是写了下,没有多想去改进代码,你那个a=b+c确实简单些

  • 蓝澈清
    2018-07-23 10:47:42

    <!DOCTYPE html>

    <html>

     <head>

      <title> 事件</title>  

      <script type="text/javascript">

       function count(){

           var d;

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

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

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

           switch(c){

               case "+":

                   d=parseInt(a)+parseInt(b);

               break;

               case "-":

                   d=parseInt(a)-parseInt(b);

               break;

               case "*":

                      d=parseInt(a)*parseInt(b);

               break;

               case "/":

                      d=parseInt(a)/parseInt(b);

               break;

           }

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

       }

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


  • Closers
    2018-07-23 10:33:06

    你错的地方有很多