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

感觉没催哦啊,为什么运行不出来?

<!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 = a-b;

        break;

        case"*";

        d = a*b;

        break;

        default;

        d = a/b;

    

     }

     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>

 

提问者:慕姐8065629 2016-05-12 13:35

个回答

  • 精慕门4438460
    2016-05-15 21:48:59

    switch(c)
         {
            case"+";
            d=parseInt(a)+parseInt(b);
            break;
            case"-";
            d = a-b;
            break;
            case"*";
            d = a*b;
            break;
            default;
            d = a/b;
        
         }

    这边的case "+": 是冒号不是封号

  • 再上路
    2016-05-12 14:01:51

    要先转换成int类型才能进行计算

    如:parseInt(a)*parseInt(b)

    还有是不是 var d;就行了