为什么 "document.getElementById("fruit").value=result;"这句话result一定要在右边,在左边的话无法显示输出框的值?
<script type="text/javascript">
function count(){
// 文本框1
var oTtxt1=document.getElementById("txt1").value;
//文本框2
var oTtxt2=document.getElementById("txt2").value;
//运算符选择框
var oTtxt3=document.getElementById("select").value;
//运算
switch(oTtxt3){
case "+":
result=parseFloat(oTtxt1) + parseFloat(oTtxt2);
break;
case "-":
result=parseFloat(oTtxt1) - parseFloat(oTtxt2);
break;
case "*":
result=parseFloat(oTtxt1) * parseFloat(oTtxt2);
break;
default:
result=parseFloat(oTtxt1) / parseFloat(oTtxt2);
}
//单击"="按钮,显示输出框的值(运算结果)
document.getElementById("fruit").value=result;
}
</script>