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

为何能输入,但是得不到结果?

function count(){
       
   var first=parselnt(document.getElementById("txt1").value);//获取第一个输入框的值
	var second=parselnt(document.getElementById("txt2").value);//获取第二个输入框的值
	var select=document.getElementById("select").value;//获取选择框的值
	var result;//获取通过下拉框来选择的值来改变加减乘除的运算法则//设置结果输入框的值 
    switch(select){
      case "+":
          result=first+second;
          break;
      case "-":
          result=first+second;
          break;
      case "*":
          result=first+second;
          break;
      case "/":
          result=first+second;
          break;
      default:
          alert("error");}
     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' />


正在回答

3 回答

第三行第四行的 parseInt打错了 ,是Int不是lnt;

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

精慕门7131591 提问者

对哦,改成Int就能输出了,谢谢!!!
2016-11-16 回复 有任何疑惑可以回复我~

楼上说的也对 是int 不是Lnt 单词Parse是分析的意思,int代表整数型数值,合起来就是分析整数。在C和C++语言里,整型变量的定义用的就是int x,y,z;

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

你赋值写错了 不能写在default里,Switch的用法是变量select不为“加减乘除”才会执行default里的语句。而<body>里的是选择框,必为加减乘除之一,附正确代码,你看看。


<!DOCTYPE html>
<html>
 <head>
  <title> 事件</title>  
  <script type="text/javascript">
   function count(){
       
    //获取第一个输入框的值
    var x = parseInt(document.getElementById("txt1").value);
    //获取第二个输入框的值
    var y = parseInt(document.getElementById("txt2").value);
    //获取选择框的值
    var z = document.getElementById("select").value;
    //获取通过下拉框来选择的值来改变加减乘除的运算法则
        switch(z){
        case "+" :
            //设置结果输入框的值
            document.getElementById("fruit").value =x + y;
            break;
        case "-" :
            document.getElementById("fruit").value = x - y;
            break;
        case "*" :
            document.getElementById("fruit").value = x * y;
            break;
        case "/" :
            document.getElementById("fruit").value = x / y;
            break;
        default :
            document.write("输入有误,请重新输入!");
    }
   }
  </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>

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

举报

0/150
提交
取消

为何能输入,但是得不到结果?

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