__呵呵哒_
2016-09-27 10:51
<!DOCTYPE html>
<html>
<head>
<title> 事件</title>
<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=txt1+txt2;
break;
case "-":
result=txt1-txt2;
break;
case "*":
result=txt1*txt2;
break;
case "/":
if(txt2==0){
alert("0不能做被除数!")
}
result=txt1/txt2;
break;
}
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>
你的加号,在运算中的作用是作为 连接,而不是加法,
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题