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

按了等号怎么没有反应?

<script type="text/javascript">

   function count(){

    var txt1=parseInt(document.getElementById('txt1').value);

     var txt2=parseInt(document.getElementById('txt2').value);

     var result=document.getElementById('select').value);

     var sum='';

     switch(result){

         case '+':

             sum=txt1+txt2;

             break;

             case '-':

             sum=txt1-txt2;

             break;

             case '*':

             sum=txt1*txt2;

             break;

             case '/':

             sum=txt1/txt2;

             break;

     }

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

   }

  </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=' = ' oclick='count()'/> <!--通过 = 按钮来调用创建的函数,得到结果--> 


提问者:慕慕8881611 2017-09-11 22:38

个回答

  • 慕设计1549332
    2017-09-12 11:04:11
    已采纳

    16行多个括号,最后结果框丢了,HTML标签重了,onclick写错了

  • WenSen_
    2017-09-12 10:18:25

    鼠标点击事件没有写:function count(){代码块

    }