Код: Выделить всё
$(document).on("click", "#edit-btn", function () {
$('#editProductModal').modal('show');
$tr =$(this).closest('tr');
var data= $tr.children("td").map(function(){
return $(this).text();
}).get();
$('#edit_no').val(data[0]);
$('#edit_orderuid').val(data[1]);
$('#edit_productname').val(data[2]);
$('#edit_qty').val(data[3]);
$('#edit_weight').val(data[5]);
$('#edit_price').val(data[6]);
$('#edit_discount').val(data[7]);
});
Код: Выделить всё
//Update
$(document).on("click", "#update-product", function () {
var data= $tr.children("td").map(function(){
return $(this).text();
}).get();
$(data[3]).text($('edit_qty').val())
$('#editProductModal').modal('hide');
});
Подробнее здесь: https://stackoverflow.com/questions/784 ... ith-jquery
Мобильная версия