问答详情
源自:6-11 编程练习

代码检查了好多遍,不知道出现什么问题?

求大神赐教,拜托拜托~~

提问者:flowerlion 2015-01-20 16:08

个回答

  • flowerlion
    2015-01-20 16:22:43

    oh my god !终于看到问题了。搞定~~

  • Fiona0126
    2015-01-20 16:19:29

    两个小错误~第一个是b的value的id是txt2,另外mark怎么可以parseInt呢~~

  • Alyssa_Lee
    2015-01-20 16:19:17

    <!DOCTYPE html>
    <html>
     <head>
      <title> 事件</title>  
      <script type="text/javascript">
    function count(){
    var a=parseInt(document.getElementById("txt1").value);
    var b=parseInt(document.getElementById("txt2").value);   //-------id是txt2不是txt
    var mark=document.getElementById("select").value;   //-------符号干嘛还要转成数值。。。
    var c=0;
        switch(mark){
        case "+":   
            c=a+b;
            break;
        case "-":
            c=a-b;
            break;
        case "*":
            c=a*b;
            break;
        default:
            c=a/b;
        }
    document.getElementById("fruit").value=c;
       }
      </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>

    “检查了好多遍”

    真的是检查了好多遍吗?连ID错了都不知道。。。。。。


  • 码渣也难当
    2015-01-20 16:18:11

    b没有取到ID。。。没有ID=txt的控件名。。。