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

这个代码为啥不灵呢,好奇怪,是哪错了,望高手指导,谢谢!

<!DOCTYPE html>

<html>

 <head>

  <title> 事件</title>  

  <script type="text/javascript">

   function count(){

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

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

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

var fur=0;

switch(sel)

{case"+";

   fur=parseInt(x)+parseInt(y);

   break;

   case"-";

   fur=parseInt(x)-parseInt(y);

   break;

   case="*";

   fur=parseInt(x)*parseInt(y);

   break;

   case="/";

   fur=parseInt(x)/parseInt(y);

   break;


}

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

   }

   

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


正在回答

2 回答

兄die,你这个改改哈

http://img1.sycdn.imooc.com//5f1308010001bec606760342.jpg

把标点改成:

把不必要的等号去掉

应该就pass了

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

多谢指点,谢谢

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

举报

0/150
提交
取消

这个代码为啥不灵呢,好奇怪,是哪错了,望高手指导,谢谢!

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