嘿伙计们,我这里有一些代码应该将所有有效数据相加然后总计。
if (myErrorFlag != "Y")
{
for (i = 1; i <= 4; i++)
{
AmountNumber = 'amount' + i;
AmountValue = parseInt($(AmountNumber).value);
$('total').value += parseInt(AmountValue);
}
}
我想要的是让循环获取所有输入的值并将它们总计。