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

帮忙看下我的代码,点了等于号没有反应。

<!DOCTYPE html>

<html>

 <head>

  <title> 事件</title>  

  <script type="text/javascript">

   function count(){

    var sum;

    var i=Document.getElementById("txt1").value;  

    //获取第一个输入框的值

var j=Document.getElementById("txt2").value;

//获取第二个输入框的值

var K=Document.getElementById("select").value; 

//获取选择框的值

switch(K){

case "+":

sum=parseInt(i)+parseInt(j);

break;

case "-":

sum=parseInt(i)-parseInt(j);

break;

case "*":

sum=parseInt(i)*parseInt(j);

break;

case "/":

sum=parseInt(i)/parseInt(j);

break;

}

//获取通过下拉框来选择的值来改变加减乘除的运算法则

document.getElementById("fruit").value=sum;

    //设置结果输入框的值 

   }

  </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>


正在回答

3 回答

我的代码如下:


<!DOCTYPE html>

<html>

 <head>

  <title> 事件</title>  

  <script type="text/javascript">

   function count(){

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

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

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

        

        var result;

        

        switch(selectValue) {

            case"+":

                result = a + b;

                break;

            case"-":

                result = a - b;

                break;

            case"*":

                result = a * b;

                break;

            case"/":

                result = a / b;

                break;

            default:

                result = a / b;

                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>


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

document  首字母是小写d,变量i,j可以在进入switch之前,先parseInt(i),parseInt(j)

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

D是小写不是大写  document.write

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

举报

0/150
提交
取消

帮忙看下我的代码,点了等于号没有反应。

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