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

帮忙看看代码哪里有错了,不显示结果

function count(){
      
    //获取第一个输入框的值
     var otxt1 = document.getElementById("txt1").value;
 //获取第二个输入框的值
     var otxt2 = document.getElementById("txt2").value;
 //获取选择框的值
    var oselect = document.getElementById("select").value;
 //获取通过下拉框来选择的值来改变加减乘除的运算法则
    var result="";
    //设置结果输入框的值
    switch(select){
    case "+";   
    result = parseFloat(otxt1)+parseFloat(otxt2);
    break;
    case "-";
    result = parseFloat(otxt1)-parseFloat(otxt2);
    break;
    case "*";
    result = parseFloat(otxt1)*parseFloat(otxt2);
    default;
    result = parseFloat(otxt1)/parseFloat(otxt2);
    }
    document.getElementById("fruit").value = result;
   }
  </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>

正在回答

4 回答

你的select没有带入 你定义的是oselect

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

建议你使用firebug类似调试工具,很容器发现这些小问题

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

 switch(select){ 这块写错了 ,应该是switch(oselect) 你定义的是oselect 你用的是select

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

举报

0/150
提交
取消

帮忙看看代码哪里有错了,不显示结果

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