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

来源:6-11 编程练习

暴走大熊

2015-12-27 21:11

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

  • 风中雨剑
    2015-12-27 21:30:49
    已采纳
    <!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>
    //例如除数不能为零 等细节 多注意就可以了


    暴走大熊

    非常感谢!

    2016-01-23 21:24:11

    共 1 条回复 >

  • 狂飙的蜗牛_1
    2015-12-27 21:19:13
      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;
       }


JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题