我正在对表格的行点击执行某些操作。基本上在行单击上附加新表。
$('#myTable').on('click-row.bs.table', function (e, row, $element) {
///...some actions
$('#myTable> tbody:last').append('<table id="newTable" class="table table-hover table-condensed table-bordered">' + thead + tbody + '</table>');
}
如何确保在单击的行下方添加新表而不是在最后一个位置(行)?