Статьи

JQuery найти индекс последней строки

Быстрый фрагмент jQuery для вставки в строку по определенному индексу (или последней строке). Например, чтобы найти последнюю позицию строки таблицы.

//find last position of 
 var lastRowIndex = $itemForm.lastIndexOf('');
 console.log(lastRowIndex);

Затем вы можете вставить строку в индекс другой строки следующим образом:

 console.log($itemForm.substring(lastRowIndex, $itemForm.length));
$itemForm = $itemForm.substring(0,lastRowIndex) + "" + data.tableRowTemplate.html() + "" + $itemForm.substring(lastRowIndex, $itemForm.length);
console.log($itemForm); "+ data.tableRowTemplate.html () +"   "+ $ itemForm.substring (lastRowIndex, $ itemForm.length);
 console.log ($ itemForm);