代码检查了好多遍,不知道出现什么问题?
求大神赐教,拜托拜托~~
2015-01-20
<!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错了都不知道。。。。。。
举报