2 回答
TA贡献158条经验 获得超233个赞
1,建议把JavaScript 写后面,避免以后获取不到值得问题。
2,那些id="" type="" 建议是要用双引号。
3, document.getElementById("fruit").value=result; 写在了 switch 语句里面,注意
<!DOCTYPE html>
<html>
<head>
<title> 事件</title>
<meta charset="utf-8">
</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"/>
<script type="text/javascript">
function count(){
var txt1=document.getElementById("txt1").value;
var txt2=document.getElementById("txt2").value;
var select=document.getElementById("select").value;
var result=" ";
switch(select){
case"+":
result=parseInt(txt1)+parseInt(txt2);
break;
case"-":
result=parseInt(txt1)-parseInt(txt2);
break;
case"*":
result=parseInt(txt1)*parseInt(txt2);
break;
case"/":
result=parseInt(txt1)/parseInt(txt2);
break;
}
document.getElementById("fruit").value=result;
}
</script>
</body>
</html>
望采纳。
添加回答
举报