问答详情
源自:6-11 编程练习

fruit文本框获取不到值

为什么fruit文本框获取不到值

提问者:慕田峪5861554 2015-12-16 14:40

个回答

  • uwenhao2008
    2015-12-20 21:36:02

    result = document.getElementById('fruit').value ;

    然后后面在fruit那里写成  value = result为什么不能运行?

  • mosci
    2015-12-16 16:05:40

       switch(select){

            case "+":

                result=parseInt(txt1)+parseInt(txt2);

                break;

            case "-":

                result=parseInt(txt1)-parseInt(txt2);

                break;

            case "*":

                result=parseInt(txt1)*parseInt(txt2);

                break;

            default:

                result=parseInt(txt1)/parseInt(txt2);

        }

        //设置结果输入框的值 

        document.getElementById("fruit").value = result;


  • 慕田峪5861554
    2015-12-16 14:46:41

    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;


  • Perona
    2015-12-16 14:43:25

    提问最好贴一下代码,不然谁知道你问什么

  • Caballarii
    2015-12-16 14:43:07

    把你写的代码贴出来看看

  • mosci
    2015-12-16 14:43:04

    取值方法:document.getElementById("fruit").value = result;

    你得把你代码贴出来,我们才能知道你错哪了啊