Pull th content into a td data-label attribute

后端 未结 3 449
故里飘歌
故里飘歌 2021-01-25 12:53

I\'m using a responsive table style that will collapse for smaller screen sizes and display the table header before each cell.

HTML:


  <         
3条回答
  •  一整个雨季
    2021-01-25 13:40

    This small code jQuery copy attr "data-label" TH to TD

    $('table th').each(function(i,elem) {
      var num = i + 1;
      $('table td:nth-child(' + num + ')').attr('data-label', $(elem).text());
    });
    

提交回复
热议问题