찾다

 >  Q&A  >  본문

求大神帮忙看看,为什么显示不了结果

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


面对疾风吧面对疾风吧2900일 전918

모든 응답(2)나는 대답할 것이다

  • 数据分析师

    数据分析师2017-09-30 23:25:31

    도와주세요, 왜 결과가 표시되지 않나요? - PHP 중국어 웹사이트 Q&A - 도와주세요, 왜 결과가 표시되지 않나요? - PHP 중국어 웹사이트 Q&A

    둘러보고 배워보세요.

    회신하다
    0
  • 巴扎黑

    巴扎黑2016-12-21 11:48:35

    哈哈,事实上楼主写的是parselnt,注意是parseInt,方法名如果你打正确了,是会变色的,注意观察。

    这种问题建议用alert();打印值排查,没有debug确实不好找。


    회신하다
    0
  • 취소회신하다