fruit文本框获取不到值

来源:6-11 编程练习

慕田峪5861554

2015-12-16 14:40

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

写回答 关注

6回答

  • 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;


    mosci

    你要用parseInt()把字符串解析,返回整数

    2015-12-16 16:05:07

    共 1 条回复 >

  • 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;

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

JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题