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

请各位帮我看看哪里错了,就是运行不了

<!DOCTYPE html>
<html>
 <head>
  <title> 事件</title>  
  <script type="text/javascript">
   function count(){
  var txt1=parseInt(var = document.getElementById("txt1").value);  //获取第一个输入框的值
  var txt2=parseInt(var = 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'/'txtx2';
    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>


正在回答

2 回答

<!doctype html>
<!DOCTYPE html>
<html>
 <head>
  <title> 事件</title>  
  <script type="text/javascript">
   function count(){
  var txt1=parseInt(document.getElementById("txt1").value);  //这里txt1) 反括号错误
  var txt2=parseInt(document.getElementById('txt2').value);  //这里txt1) 反括号错误
  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;//这里去掉单引号 因为是变量  txt2误写成txtx2
    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>
//例如除数不能为零 等细节 多注意就可以了


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

暴走大熊 提问者

非常感谢!
2016-01-23 回复 有任何疑惑可以回复我~
  var txt1=parseInt(document.getElementById("txt1").value);  //获取第一个输入框的值
  var txt2=parseInt(document.getElementById('txt2').value);//  ")"写成了中文格式,去掉"var="
    {case'+': 
        result=txt1+txt2;//去掉引号,如果有引号就表示是字符串而不是变量
    break;
     case'-':
         result=txt1-txt2;
    break;
     case'*':
         result=txt1*txt2;
    break;
     case'/':
         result=txt1/txtx2;
    break;
   }


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

举报

0/150
提交
取消

请各位帮我看看哪里错了,就是运行不了

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