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

帮忙看下代码有什么问题

帮忙看下代码有什么问题

spider18 2015-09-11 10:10:04
<!DOCTYPE html> <html>  <head>   <title> 事件</title>     <script type="text/javascript">    function count()   {         var num1=parseInt(document.getElementById("txt1").value);     var num2=parseInt(document.getElementById("txt2").value);     var opp=document.getElementById("select").value;     var sum='';          switch (opp) {  case '+':  sum=num1+num2 ;  break;  case "-"  sum=num1-num2 ;  break;  case "*"  sum=num1*num2 ;  break;  case "/"  sum=num1/num2 ;  break; } document.getElementById("fruit").value = sum;      }   </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 回答

?
LABELNET

TA贡献3条经验 获得超0个赞

  1. 第10行 左括号为 中文括号;

  2. 第18,21,24 行 ,case 没有冒号

  3.第29行 左括号 为中文括号;



查看完整回答
反对 回复 2015-09-11
  • spider18
    spider18
    谢谢,火眼金睛啊 能分享下怎么快速识别码?
  • LABELNET
    LABELNET
    你不会是在文本文档上 敲的代码吧? 练习的话 ,可以在 notepad++ 等高级记事本上写代码;也可以在编译器里写,比如eclipse , visual studio 等 ,都有识别;
  • 1 回答
  • 0 关注
  • 1390 浏览
慕课专栏
更多

添加回答

举报

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