6-11编程练习为什么我的计算器减法除法乘法都正常,唯独加法2+3会等于23呢?

来源:6-11 编程练习

__呵呵哒_

2016-09-27 10:51

<!DOCTYPE html>

<html>

 <head>

  <title> 事件</title>  

  <script type="text/javascript">

   function count(){

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

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

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

    var result;

switch(select){

     case "+":

         result=txt1+txt2;

         break;

     case "-":

         result=txt1-txt2;

         break;

     case "*":

         result=txt1*txt2;

         break;

     case "/":

         if(txt2==0){

             alert("0不能做被除数!")

         }

         result=txt1/txt2;

         break;

}

    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>


写回答 关注

1回答

  • 慕移动9485495
    2016-09-27 11:18:58
    已采纳

    你的加号,在运算中的作用是作为  连接,而不是加法,



    __呵呵哒_

    非常感谢!

    2016-09-27 15:08:14

    共 3 条回复 >

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

467397 学习 · 21877 问题

查看课程

相似问题