这行代码哪里有错啊,无论怎么点”=“都没用 ,求大神解答!

<!DOCTYPE html>

<html>

 <head>

  <title> 事件</title>  

  <script type="text/javascript">

   function count()

   {

       var x,y,bb;

       x=document.getElementById(txt1).value;

       y=document.getElementById(txt2).value;

       bb=document.getElementById(select).value;

       var result="";

       switch(bb)

           {

               case "+":

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

                   break;

               case "-":

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

                   break;

                case "*":

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

                    break;

                default :

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

           }

    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>


_linux_program
浏览 1302回答 1
1回答

ppo_YXWU

       x=document.getElementById(txt1).value;       y=document.getElementById(txt2).value;       bb=document.getElementById(select).value;这里出错了,括号里面要加引号,这些问题你用控制台很简单可以找出的。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript