为了账号安全,请及时绑定邮箱和手机立即绑定

计算器无法计算结果,哪里出错了?

<!DOCTYPE html>
<html>
 <head>
  <title> 事件</title> 
  <script type="text/javascript">
   function count(){
   var a=document.getElementById("txt1").value;
   var b=document.getElementById("ttxt2").value;
   var s=document.getElementById("select").value;
   var h="";
   switch(s)
   {
        case "+":
        he=parseInt(a)+parseInt(b);
        break;
        case "-":
        he=parseInt(a)-parseInt(b);
        break;
        case "*":
        he=parseInt(a)*parseInt(b);
        break;
        default;
        he=parseInt(a)/parseInt(b);
   }
   document.getElementById("fruit").value=h;
   }
  </script>
 </head>
 <body>
 <input id="txt1"  type="text" />
 <select id="select">
    <option type="+">+</option>
    <option type="-">-</option>
    <option type="*">*</option>
    <option type="/">/</option>
 </select>
 <input id="txt2"  type="text" />
 <input  type="button" value="=" onClick="count()"/>
 <input id="fruit"  type="text" />
 </body>
</html>

正在回答

1 回答

变量定义错误
http://img1.sycdn.imooc.com//57e67ce80001527803650349.jpg

0 回复 有任何疑惑可以回复我~
#1

LanceChou 提问者

非常感谢!
2016-09-24 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

计算器无法计算结果,哪里出错了?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信