找不到代码错误

来源:6-11 编程练习

慕慕1265030

2016-08-11 14:08

<!DOCTYPE html>

<html>

 <head>

  <title> 事件</title>  

  <script type="text/javascript">

 function count(){

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

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

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

 var result="";

 switch(osel){

     case"+":

     result=parseInt(otxt1) + parseInt(otxt2);

     break;

     case"-":

     result=parseInt(otxt1) - parseInt(otxt2);

     break;

     case"*":

     result=parseInt(otxt1) * parseInt(otxt2);

     break;

    default:

     result=parseInt(otxt1) / parseInt(otxt2);

     }

   

  document.getElementById("fruit")=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回答

  • 慕粉3512312
    2016-08-11 15:27:52

      document.getElementById("fruit").value=result;  少个value

  • 繁华若梦
    2016-08-11 14:41:32

    document.getElementById("fruit")=result; 这样的方式是错误的,这行代码的意思是把result的值赋给Id为fruit的这个对象,用变量给对象赋值肯定是错误的。这里要改成document.getElementById("fruit").value=result; 这样才表示的是给Id为fruit的对象的value属性赋值。

    另外再给你一点建议:

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

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

    这两个地方,并没有错,但是可以进行一些优化会让你的代码更简洁,修改为

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

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

    这样,你拿到这两个值的时候已经转换为整数了,可以直接进行运算。当然也可以写成这样:

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

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

    otxt1=parseInt(otxt1);

    otxt2=parseInt(otxt2);

    这样也会直接将值转换为整数,直接进行运算,不用在每次运算的时候都去转换一次。

  • 我知道你全都知道
    2016-08-11 14:34:16

    document.getElementById("fruit").innerHTML=result

  • WJHHAHA
    2016-08-11 14:28:23

     document.getElementById("fruit")=result;这里的问题,改成document.getElementById("fruit").value=result;

JavaScript进阶篇

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

468060 学习 · 21891 问题

查看课程

相似问题