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

为啥点击没反应

<!DOCTYPE html>

<html>

 <head>

  <title> 事件</title>  

  <script type="text/javascript">

   function count(){

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

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

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

     var C;

   }

   

    switch(three)

    {

        case "+":

        C=parselnt(one)+parselnt(two);

        break;

        

    }

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

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


提问者:懒得起名字_3 2019-03-25 21:12

个回答

  • qq_masaki_
    2019-03-26 11:30:13

    https://img3.mukewang.com/5c999c7b00010c5204000130.jpg这个大括号要把整个函数包起来你把它删了

    https://img3.mukewang.com/5c999cb50001978102850112.jpg在这个位置加上去