$ (документ) .ready (функция () {
$(".text») .change (функция (случай)
{
txtBoxCalcAmtPaid ();
});
});
txtBoxCalcAmtPaid функции () {
//When потребитель изменяет количество должное проверенная линия детали добавлено к «textbox количества компенсации»
сумма var = 0;
$.each ($(".check»), функция (I, v)
{
theElement var = $ (v);
если (v.checked), то
{
theValue var = theElement.val ();
суммируйте parseFloat += (document.getElementById («txtAmountPaid» + theValue) .value);
}
еще
{
//clear поле txtAmountPaid если checkbox не проверен
theValue var = theElement.val ();
document.getElementById («txtAmountPaid» + theValue) .value = '';
}
});
document.getElementById («txtPaymentAmt») .value = FormatCurrency (сумма);
}
|