感覺沒催哦啊,為什么運(yùn)行不出來?
<!DOCTYPE html>
<html>
?<head>
? <title> 事件</title> ?
? <script type="text/javascript">
? ?function count(){
? ? ?var d ="";
? ? ?var a=document.getElementById("txt1").value;
? ? ?var b=document.getElementById("txt2").value;
? ? ?var c=document.getElementById("select").value;
? ? ?switch(c)
? ? ?{
? ? ? ? case"+";
? ? ? ? d=parseInt(a)+parseInt(b);
? ? ? ? break;
? ? ? ? case"-";
? ? ? ? d = a-b;
? ? ? ? break;
? ? ? ? case"*";
? ? ? ? d = a*b;
? ? ? ? break;
? ? ? ? default;
? ? ? ? d = a/b;
? ??
? ? ?}
? ? ?document.getElementById("fruit").value=d;
? ?}
? </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()"/> <!--通過 = 按鈕來調(diào)用創(chuàng)建的函數(shù),得到結(jié)果-->?
? ?<input type='text' id='fruit' /> ??
?</body>
</html>
?
2016-05-15
這邊的case "+": 是冒號(hào)不是封號(hào)
2016-05-12
要先轉(zhuǎn)換成int類型才能進(jìn)行計(jì)算
如:parseInt(a)*parseInt(b)
還有是不是 var d;就行了