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

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

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

_linux_program 2016-01-04 18:20:01
<!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>
查看完整描述

1 回答

已采纳
?
ppo_YXWU

TA贡献9条经验 获得超1个赞

       x=document.getElementById(txt1).value;

       y=document.getElementById(txt2).value;

       bb=document.getElementById(select).value;

这里出错了,括号里面要加引号,这些问题你用控制台很简单可以找出的。

查看完整回答
反对 回复 2016-01-04
  • _linux_program
    _linux_program
    谢谢!输快了忘了 控制台是什么?IDE?
  • ppo_YXWU
    ppo_YXWU
    浏览器基本都有开发者工具的,通常是按F12,开发者工具有很多功能,可以在浏览器上调试你的页面,有错误的时候会在控制台显示出来。
  • _linux_program
    _linux_program
    哦哦 firebug 尝试中 谢谢了
  • 1 回答
  • 0 关注
  • 1301 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信