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

帮忙看一下那里去错了

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

     var d;

     switch (c)

     {

         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>


提问者:顺其自然0123456789101112131415 2016-08-01 17:36

个回答

  • 慕斯3035540
    2016-08-01 20:00:33
    已采纳

    我勒个去  你函数没大括号。。。。。。。。。函数的尾巴没合上!!!!

  • 慕斯3035540
    2016-08-01 19:57:18

    onclick="count()"  case"+-*/"补充完整应该就好

  • Allure丶Love
    2016-08-01 18:10:51

    document.getElementById("fruit").value = d;你写到方法外面去了

  • 慕粉3716487
    2016-08-01 18:09:51

    onclick = "count()"