0

我想获得一些值的总数和平均值,但我已经坚持启动 jQuery。这是因为我想要的值在同一张表中。

有人可以帮我从这个开始吗?

我的例子:http: //jsbin.com/inapey/2/edit

4

1 回答 1

0
$(document).ready(function(){
  var total = 0;
  $('#ritten tr .single_ride').each(function() {
  var ritkm = $(this).html();
  total = total + parseInt(ritkm);
  });
   alert(total);  
});
于 2013-02-21T11:11:12.920 回答