慕田峪5861554
2015-12-16 14:40
为什么fruit文本框获取不到值
result = document.getElementById('fruit').value ;
然后后面在fruit那里写成 value = result为什么不能运行?
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;
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;
提问最好贴一下代码,不然谁知道你问什么
把你写的代码贴出来看看
取值方法:document.getElementById("fruit").value = result;
你得把你代码贴出来,我们才能知道你错哪了啊
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题