问答详情
源自:6-11 编程练习

各位大神,哪里出问题了呀,为什么按了=出不来结果?

<!DOCTYPE html>
<html>
 <head>
  <title> 事件</title> 
  <script type="text/javascript">
function count(){
var a;      
var txt1=document.getElementById("txt1").value
var txt2=document.getElementById("txt2").value
var txt3=document.getElementById("txt3").value
switch(txt3){
 case"+":
 a=parseInt(txt1)+parseInt(txt2);
 braek;
 case"-":
 a=parseInt(txt1)-parseInt(txt2);
 break;
 case"*":
 a=parseInt(txt1)*parseInt(txt2);
 break;
 case"/":
 a=parseInt(txt1)+parseInt(txt2);
 break;
}
document.getElementById("fruit").value=a
   }
  </script>
 </head>
 <body>
   <input type='text' id='txt1' />
   <select id='txt3'>
  <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>

提问者:小早川桃沢 2019-08-08 11:00

个回答

  • 阳火锅
    2019-08-08 15:23:56
    已采纳

    https://img1.mukewang.com/5d4bcdfb00014be903860253.jpg你看下这个  跟你下面写的有什么区别没

  • 1frgdhf
    2019-08-08 15:33:20

    从你这个代码看,我发现了3个细节问题

    1、是break,不是braek;

    2、case后面的值没有空格;

    3、除法错误,不是+ 是/

    正确的代码为:

    <!DOCTYPE html>
    <html>
     <head>
      <title> 事件</title>
      <script type="text/javascript">
    function count(){
    var a;      
    var txt1=document.getElementById("txt1").value;
    var txt2=document.getElementById("txt2").value;
    var txt3=document.getElementById("txt3").value;
    switch(txt3){
     case "+":
     a=parseInt(txt1)+parseInt(txt2);
     break;
     case "-":
     a=parseInt(txt1)-parseInt(txt2);
     break;
     case "*":
     a=parseInt(txt1)*parseInt(txt2);
     break;
     case "/":
     a=parseInt(txt1)/parseInt(txt2);
     break;
    }
    document.getElementById("fruit").value=a
       }
      </script>
     </head>
     <body>
       <input type='text' id='txt1' />
       <select id='txt3'>
      <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>