最簡潔 答案~
<!DOCTYPE html>
<html>
?<head>
? <title> 事件</title>
? <script type="text/javascript">
? ?function count(){
? ? var num1 = document.getElementById("txt1").value;
? ? var num2 = document.getElementById("txt2").value;
? ? var num3 = document.getElementById("select").value;
? ? var sum = 0;
? ? switch(num3){
? ? ? ? case '+':
? ? ? ? ? ? sum = parseInt(num1) + parseInt(num2);
? ? ? ? ? ? break;
? ? ? ? case '-':
? ? ? ? ? ? sum = parseInt(num1) - parseInt(num2);
? ? ? ? ? ? break;
? ? ? ? case '*':
? ? ? ? ? ? sum = parseInt(num1) * parseInt(num2);
? ? ? ? ? ? break;
? ? ? ? case '/':
? ? ? ? ? ? sum = parseInt(num1) / parseInt(num2);
? ? ? ? ? ? break;
? ? }
? ? ? document.getElementById("fruit").value=sum;
? ? ?}
? </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>
2020-05-24
為啥parseInt不應用在num1獲取的時候呢,var num1 = parseInt(document.getElementById("txt1").value);
2020-05-24