<html>
<head>
<title>编程练习</title>
<script type="text/javascript">
function count(){
var a=document.getElementById("txt1").value;
var b=document.getElementById("txt2").value;
var c=document.getElementById("select").value;
var result=document.getElementById("friut");
switch(c){
case "+":
result=a+b;
break;
case"-":
result=a-b;
break;
case"*":
result=a*b;
break;
case="/":
result=a/b;
break;
}
}
</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="=">
<input type="text" id="fruit">
</body>
</html>为什么等于不出结果,哪里出了问题吗
你的等号那里没有加鼠标单击事件 (onclick),所以那个按键没有引用函数
第20行出现了语法错误,具体错在哪可以参考下答案
function count(){
var txt1 = parseInt( document.getElementById('txt1').value);//获取第一个输入框的值
var txt2 = parseInt( document.getElementById('txt2').value);//获取第二个输入框的值
var select = document.getElementById('select').value;//获取选择框的值
var result = '';
switch (select)
{
case '+':
result = txt1 + txt2;
break;
case '-':
result = txt1 - txt2;
break;
case '*':
result = txt1 * txt2;
break;
case '/':
result = txt1 / txt2;
break;
}
document.getElementById('fruit').value = result;//设置结果输入框的值
}