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

按等于号没反应!

<!DOCTYPE html>
<html>
 <head>
  <title> 事件</title>  
  <script type="text/javascript">
   function count(){
     var  a= parseInt(document.getElementById("txt1").value);
     var  b= parseInt(document.getElementById("txt2").value);
     var  c= document.getElementById("select").value;
     //获取选择框的值
     var d;
     switch(c)
     {
         case "+":d=(a+b);break;
         case "-":d=(a-b);break;
         case "*":d=(a*b);break;
         case "/":d=(a/b);break;
         }
     
    //获取第一个输入框的值
    //获取第二个输入框的值
    //获取选择框的值
    //获取通过下拉框来选择的值来改变加减乘除的运算法则
    //设置结果输入框的值
   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()"

正在回答

5 回答

<!DOCTYPE html>

<html>

 <head>

  <title> 事件</title>  

  <script type="text/javascript">

   function count(){

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

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

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

     var  d;

     switch(c)

     {

         case "+":d=(a+b);break;

         case "-":d=(a-b);break;

         case "*":d=(a*b);break;

         case "/":d=(a/b);break;

         }

   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>

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

YGJ

写代码全部用英文模式写,中文下输入:;“”()等,会Bug的!
2016-03-29 回复 有任何疑惑可以回复我~

    var  a= parseInt(document.getElementById("txt1").value);
     var  b= parseInt(document.getElementById("txt2").value);
     var  c= document.getElementById("select").value;

这里面的小括号在英文状态下书写。

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

你用这个全局函数parseFloat试试看

parseFloat(a)+parseFloat(b);

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

: 使用parseInt()函数可解析一个字符串,并返回一个整数。

switch前先将a b c转为int类型

a=parseInt(a);

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

举报

0/150
提交
取消
JavaScript进阶篇
  • 参与学习       467158    人
  • 解答问题       21875    个

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

进入课程

按等于号没反应!

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