<!DOCTYPE?html>
<html>
?<head>
??<title>?事件</title>??
??<script?type="text/javascript">
???function?count(){
????var?m=document.getElementById("txt1").value;
????var?b=document.getElementById("txt2").value;
????var?c?=document.getElementById("select").value;
//獲取通過下拉框來(lái)選擇的值來(lái)改變加減乘除的運(yùn)算法則
????var?result="";
????switch(c){
????????case?'+':
????????????result=parseInt(m)+parseInt(b)?;
????????????break;
????????case?'-':
????????????result=parseInt(m)-parseInt(b);?
????????????break;
????????case?'*':
????????????result=parseInt(m)*parseInt(b)?;
????????????break;
????????default?'/':
????????????result=parseInt(m)/parseInt(b)?;
????????????break;
????}
????
????document.getElementById("fruit")=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()";/>?<!--通過?=?按鈕來(lái)調(diào)用創(chuàng)建的函數(shù),得到結(jié)果-->?
???<input?type='text'?id='fruit'?/>???
?</body>
</html>
2015-01-24
簡(jiǎn)單來(lái)說?document.getElementById("fruit")=result;少個(gè).value
default?'/':
????????????result=parseInt(m)/parseInt(b)?;
????????????break;
default應(yīng)該改成case
2015-01-24