$(document).on('input change blur', '.input_first, .input_second', updateSchedule);
function updateSchedule() {
var sum = 0, sum1 = 0, total = 0;
$('.input_first, .input_second').each(function(i) {
if (!isNaN(this.value) && this.value.length != 0) {
if ($(this).hasClass('input_first')) {
sum += parseFloat(this.value);
$('#first_total').val(sum.toFixed(2));
$('#all_total').val(sum.toFixed(2));
} else if($(this).hasClass('input_second')) {
sum1 += parseFloat(this.value);
$('#second_total').val(sum1.toFixed(2));
total = parseFloat(sum + sum1);
$('#all_total').val(total.toFixed(2));
}
}
});
}
当我尝试运行此代码时,它显示错误将读取文件路径。有时,此代码可以很好地工作。 我不明白这段代码是什么问题。