<!DOCTYPE html><html>?<head>? <title> 事件</title> ?? <script type="text/javascript">? ? function count(){? ? var a1 = document.getElementById("txt1").value;? ? var a2 = document.getElementById("txt2").value;? ? var select = document.getElementById("select").value;? ? var re;? ? var num1 = parseInt(a1);? ? var num2 = parseInt(a2);? ? switch(select){? ? ? ? case'+';? ? ? ? re=num1+num2;? ? ? ? break;? ? ? ? case'-';? ? ? ? re=num1-num2;? ? ? ? break;? ? ? ? case'*';? ? ? ? re=num1*num2;? ? ? ? break;? ? ? ? case'/';? ? ? ? re=num1/num2;? ? ? ? break;? ? document.getElemntById("fruit").value=re;? ? }? ??? ?}? </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()" /> <!--通過(guò) = 按鈕來(lái)調(diào)用創(chuàng)建的函數(shù),得到結(jié)果-->?? ?<input type='text' id='fruit' /> ???</body></html>求幫忙?
6-11JavaScript進(jìn)階篇6-11練習(xí) 運(yùn)行不出來(lái) 我實(shí)在找不出錯(cuò)誤
慕瓜1750935
2016-04-17 14:16:10