问答详情
源自:6-11 编程练习

请大神们帮我瞧瞧哪儿错了以至于运行没有反应,谢谢!

<!DOCTYPE html>

<html>

 <head>

  <title> 事件</title>  

  <script type="text/javascript">

   function count(){

    var txt1,txt2,fruit,select;

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

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

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

    switch(select){

        case "+":

            fruit=parselnt(txt1)+parselnt(txt2);

            break;

        case "-":

            fruit=parselnt(txt1)-parselnt(txt2);

            break;

        case "*":

            fruit=parselnt(txt1)*parselnt(txt2);

            break;

        default:

            fruit=parselnt(txt1)/parselnt(txt2);

    }

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

   }

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


提问者:程序媛ing 2016-07-21 19:48

个回答

  • 天涯蝶舞
    2016-07-21 21:28:49
    已采纳

    parselnt应该写成“”parseInt“”是大写的i,不是l

  • weibo_考早营_03695159
    2016-07-24 14:57:56

    http://img.mukewang.com/579466d7000189e008920568.jpg请看下!

  • 程序媛ing
    2016-07-22 10:58:55

    这个就正确了,原来的错误原因:parsetInt的大写的i写成了小写的l;变量名不能和ID一样。

    <!DOCTYPE html>

    <html>

     <head>

      <title> 事件</title>  

      <script type="text/javascript">

       function count(){

        var a,b,num,c;

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

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

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

        switch(c){

            case "+":

                num=parseInt(a)+parseInt(b);

                break;

            case "-":

                num=parseInt(a)-parseInt(b);

                break;

            case "*":

                num=parseInt(a)*parseInt(b);

                break;

            default:

                num=parseInt(a)/parseInt(b);

        }

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

       }

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


  • anfly
    2016-07-22 10:29:18

    你的变量命名有问题,最后的输出fruit可以换个变量名字试试,比如num输出可以这样写:

    document.getElementById("fruit").value=num; //将num的值赋与fruit(输出框)

    同时,你的switch里面的变量都要改正

  • 落叶为重生
    2016-07-22 07:40:00

    我擦,我都测试过了居然不是最佳答案,心碎呀...

  • 慕粉3545084
    2016-07-21 21:04:58

    fruit改成result

  • 落叶为重生
    2016-07-21 20:35:17

    parseInt才对你现在写错了