<!DOCTYPE html>
<html>
<head>
<title> 事件</title>
<script type="text/javascript">
function count(){
var txt1,txt2,fruit,select;
txt1=document.getElementById("txt1").value;
txt2=document.getElementById("txt2").value;
select=document.getElementById("select").value;
switch(select){
case "+":
fruit=parselnt(txt1)+parselnt(txt2);
break;
case "-":
fruit=parselnt(txt1)-parselnt(txt2);
break;
case "*":
fruit=parselnt(txt1)*parselnt(txt2);
break;
default:
fruit=parselnt(txt1)/parselnt(txt2);
}
document.getElementById("fruit").value=fruit;
}
</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>
parselnt应该写成“”parseInt“”是大写的i,不是l
请看下!
这个就正确了,原来的错误原因:parsetInt的大写的i写成了小写的l;变量名不能和ID一样。
<!DOCTYPE html>
<html>
<head>
<title> 事件</title>
<script type="text/javascript">
function count(){
var a,b,num,c;
a=document.getElementById("txt1").value;
b=document.getElementById("txt2").value;
c=document.getElementById("select").value;
switch(c){
case "+":
num=parseInt(a)+parseInt(b);
break;
case "-":
num=parseInt(a)-parseInt(b);
break;
case "*":
num=parseInt(a)*parseInt(b);
break;
default:
num=parseInt(a)/parseInt(b);
}
document.getElementById("fruit").value=num;
}
</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>
你的变量命名有问题,最后的输出fruit可以换个变量名字试试,比如num输出可以这样写:
document.getElementById("fruit").value=num; //将num的值赋与fruit(输出框)
同时,你的switch里面的变量都要改正
我擦,我都测试过了居然不是最佳答案,心碎呀...
fruit改成result
parseInt才对你现在写错了