登陆

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

<!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>


# JavaScript
面对疾风吧面对疾风吧1769 天前463 次浏览

全部回复(2)我要回复

  • 数据分析师

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

    求大神帮忙看看,为什么显示不了结果-PHP中文网问答-求大神帮忙看看,为什么显示不了结果-PHP中文网问答

    围观一下哦,学习一下。

    回复
    0
  • 巴扎黑

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

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

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


    回复
    0
  • 取消回复发送