“jQuery Grab Table Row” Ответ

Получить данные строки таблицы jQuery

$("document").ready(function() {
  var tb = $('.layui-table:eq(0) tbody');
  var size = tb.find("tr").length;
  console.log("Number of rows : " + size);
  tb.find("tr").each(function(index, element) {
    var colSize = $(element).find('td').length;
    console.log("  Number of cols in row " + (index + 1) + " : " + colSize);
    $(element).find('td').each(function(index, element) {
      var colVal = $(element).text();
      console.log("    Value in col " + (index + 1) + " : " + colVal.trim());
    });
  });
});
Comfortable Capybara

jQuery Grab Table Row

$('.itemTable').eq(2);
//this will grab the 3rd row of the table with the class itemTable
Carnivorous Flamingo

Ответы похожие на “jQuery Grab Table Row”

Вопросы похожие на “jQuery Grab Table Row”

Больше похожих ответов на “jQuery Grab Table Row” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования