我正在为一个 uni 主题做作业,并且在使用 javascript 时遇到了一些问题。我希望能够根据另一个字段的值更改输入字段的值。简而言之,目的是在一个字段中输入一个产品的数量,并让其旁边的字段更改以显示购买该数量产品所需的总金额。
当我运行我的 html 时,输入的数量不会改变成本字段的值,我认为我的 javascript 一定有问题。
这是我的 javascript 函数的副本,以及在其中执行的相关 html。
脚本:
function calcRowWash(){
var theForm = document.forms["orderform"];
var x = theForm.getElementById("quantc").value;
var quantity = 0;
if(x.value!=""){
quantity = parseInt(x.value);
}
var totalC = (quantity*0.30);
document.getElementById("totc").value = totalC;
return;
}
HTML:
<td width = "90px" align ="left"><input type = "text" id ="quantc" name = "quantWash" size = "5" tabindex = "13" onblur="calcRowWash()"/></td>
<td width = "90px" align ="left"><input type = "hidden" id ="totc" name = "washtotal" size = "5" tabindex = "14" value=""/></td>
谢谢您的帮助!。