为什么把结果存储在变量里,输出不了结果?
如题:
我把结果赋值给变量var myresult=document.getElementById("fruit").value;
myresult=parseInt(txt1)+parseInt(txt2);或者myresult=fru;输不出结果,只能通过document.getElementById("fruit").value=parseInt(txt1)+parseInt(txt2);或者document.getElementById("fruit").value=fru;才能输出结果。