1

我有下面的代码,用于计算插入的每个实例(行)的两个字段。

目前,它填充所有“总计”字段,而不仅仅是对应行的字段。

还将“NaN”插入到所有总字段中。

var LabourItems = {
   rate: null,
   hours: null,
   total: null,
   init: function(object) {
      var rate = $(object).children('.rate').first();
      var hours =$(object).children('.hours').first();
      this.total = Number(rate) * Number(hours);
      this.updateTotal(object);
   },
   updateTotal: function(object) {
      $(object).children('.total').first().attr('value', this.total)
   }
}

//reactTochange for those inputs that you want to observe
$('.hours').live("click", function() {
   jQuery.each($('.labouritems'), function(key,value){
      LabourItems.init(value);
   });
});
4

1 回答 1

0

您尚未获取字段的

var rate = parseInt($(object).children('.rate').val(), 10);

[不需要,.first()因为在使用.val()阅读时这是隐含的]

此外,您也应该使用.val()设置总值,而不是.attr('value', ...).

于 2012-10-19T13:20:13.953 回答