计算出来不对

来源:6-11 编程练习

唐糖

2015-12-30 16:45

http://img.mukewang.com/568399370001514705520366.jpg

为什么减法算出来没有值,除法算出来是“undefined"?

写回答 关注

2回答

  • Perona
    2015-12-30 16:53:11
    已采纳

    switch里的值是哪来的,根据上面应该是变量c,或者把上面的变量c改成select.

    参考代码

     function count(){
        	var txt1   = parseInt( document.getElementById('txt1').value);//获取第一个输入框的值
    		var txt2   = parseInt( document.getElementById('txt2').value);//获取第二个输入框的值
    		var select = document.getElementById('select').value;//获取选择框的值
    		var F = '';
    		switch (select)
    		 {
    			case '+':
    				F = txt1 + txt2;
    				break;
    			case '-':
    				F = txt1 - txt2;
    				break;
    			case '*':
    				F = txt1 * txt2;
    				break;
    			case '/':
    				F = txt1 / txt2;
    				break;  
    		 }
             document.getElementById('fruit').value = F;//设置结果输入框的值 
       }


    唐糖

    非常感谢!

    2016-01-04 14:14:56

    共 1 条回复 >

  • 产品经理不是经理
    2015-12-30 16:51:37

    select从哪来的?

    产品经理不是... 回复唐糖

    答案如下面回复的那样,select变量都没有,肯定会出问题啊

    2015-12-30 17:04:39

    共 2 条回复 >

JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题