我想让一个输入框的值等于另2个的乘积,怎么做
<input type="text" name="a" id="a" value="XXX"/>
<input type="text" name="b" id="b" value="XXX"/>
<input type="text" name="c" id="c" value="X"/>
怎么写js让c的value等于a*b JavaScript jsp? web
[解决办法]
var va = document.getElementById("a").value;
var vb = document.getElementById("b").value;
document.getElementById("c").value = va * vb;