<!DOCTYPE html><html>?<head>? <title> 事件</title> ?? <script type="text/javascript">? ?function count(){? ? ?var a=document.getElementById("txt1").value;? ? ?var b=document.getElementById("txt2").value;? ? ?var s=document.getElementById("select").value;? ? ?var c="";? ? ?switch(s)? ? ?{? ? ? ? case "+":? ? ? ? ? ? ?c=parseFloat(a)+parseFloat(b);? ? ? ? ? ? ?break;? ? ? ? case "-":? ? ? ? ? ? ?c=parseFloat(a)-parseFloat(b);? ? ? ? ? ? ?break;? ? ? ? case "*":? ? ? ? ? ? ?c=parseFloat(a)*parseFloat(b);? ? ? ? ? ? ?break;? ? ? ? case "/":? ? ? ? ? ? ?c=parseFloat(a)/parseFloat(b);? ? ? ? ? ? ?break;? ? ? ? default; ? ??? ? ?}? ? ?document.getElementById("fruit")=c;}? </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>
幫我看下這個(gè)程序?yàn)槭裁催\(yùn)行不了,我自己找了好久不知道錯(cuò)哪里。
JustZNH
2017-01-05 21:45:53