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

为什么case值与select值不匹配,计算也能成功?

 <script type="text/javascript">

   function count(){

    var x=document.getElementById("txt1").value

    var y=document.getElementById("txt2").value

    var z=document.getElementById("select").value

    var s=document.getElementById("fruit").value;

    switch(z)

    {

    case 1;

    s=parseInt(x)+parseInt(y);

    break;

    caee 2;

    s=parseInt(x)-parseInt(y);

    break;

    case 3;

    s=parseInt(x)*parseInt(y);

    break;

    default;

    s=parseInt(x)/parseInt(y);

    }


  

   }

  </script> 

 </head> 

 <body>

   <input type='text' id='txt1' /> 

   <select id='select'>

    <option value='+'>+</option>

<option value="-">-</option>

<option value="*">*</option>

<option value="/">/</option>

   </select>

为什么case值与select值不匹配,计算也能成功?

提问者:qq_PureBLACK_13313525 2016-05-12 21:16

个回答

  • qq_阿湃_0
    2016-05-20 17:03:33

      default;

        s=parseInt(x)/parseInt(y);

    会运算这个

  • 片雪蝉
    2016-05-13 20:45:39

    代码不完整

  • koromon
    2016-05-13 00:19:26

    提问首先要确保代码正确吧。。。这个代码你确定正确么