如何根据jQuery中的顺序设置行中单元格的文本

时间:2013-10-08 10:39:53

标签: javascript jquery html

这可能很简单。我有一张桌子,并且希望每4行在侧面有一个指示符来表示表格中的分隔符。

http://jsbin.com/AGijUNe/2/edit

我希望它能够在每个第4行的页面指示符单元格中根据顺序说1,2,3等。

enter image description here

1 个答案:

答案 0 :(得分:1)

这样的事情:

$(function (){
  $('tr:nth-child(4n)').addClass('row4');
  $('tr:nth-child(4n) .page-indicator').each(function(i){
    $(this).text(i+1);
  });
});

Demo