到底哪里错了?感觉自己写的很对啊

来源:6-11 编程练习

来盘大拌菜

2016-03-23 15:51

 function count(){

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

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

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

    var z="";

   switch(y)

   {

       case '+':

       z=t1+t2;

       break;

    case '-':

       z=t1-t2;

       break;

    case '*':

        z=t1*t2;

        break;

    case '/':

        z=t1/t2;

        break;

   }

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

   }

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


写回答 关注

3回答

  • 酔甡
    2016-03-23 18:10:07

    第11行的冒号错了

  • display_none
    2016-03-23 17:24:08

      case '-':   这行代码的冒号,请用英文的半角冒号

    displa... 回复你若盛开0

    采纳下答案呗。谢谢啦

    2016-03-25 21:39:23

    共 8 条回复 >

  • smis137
    2016-03-23 16:10:18

    符号case‘-’:冒号错了

JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题