为了账号安全,请及时绑定邮箱和手机立即绑定

找不出错误,但是不出结果

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


正在回答

4 回答

parseInt  驼峰命名  这个是全局函数 ,区分大小写

0 回复 有任何疑惑可以回复我~

记得加上<meta charset="utf-8" />,不然title的中文显示不了,parseInt都能打错,基础知识还不够

0 回复 有任何疑惑可以回复我~

parseInt中的I是i的大写字母,不是L的小写,整数类型Int;

0 回复 有任何疑惑可以回复我~

parseInt,中间十大写的I不是小写的L

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

找不出错误,但是不出结果

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信