慕粉4495554
2016-04-27 21:40
<!DOCTYPE html>
<html>
<head>
<title> 事件</title>
<script type="text/javascript">
function count(){
var v1=document.getElementById("txt1").value;
a=parseInt(v1);
var v2=docuemnt.getElemengtById("txt2").value;
b=parseInt(v2);
var select1=docuemnt.getElementById("select").value;
var result="";
switch(select1){
case "+":
result=a+b;
break;
case "-":
result=a-b;
break;
case "*":
result=a*b;
break;
case "/":
result=a/b;
}
document.getElementById("fruit").value=result;
}
</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>
拼写错啦,看看你的 document 和 getElementById
单词平错了
拼错了。
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题
回答 9
回答 5
回答 2
回答 1
回答 1