html += td + itemid + td; html += td contenteditable=true + itemname + td; html += td contenteditable=true + itemprice + td; html += td contenteditable=true + itemstock + td; h
function editGoods(id) { var name = $('tr[data-id="' + id + '"]').find('td:eq(1)').text(); var price = $('tr[data-id="' + id + '"]').find('td:eq(2)').text(); var stock = $('tr[data-id="' + id + '"]').find('td:eq(3)').text();
$.ajax({ url: 'edit_goods.php', type: 'POST', data: {id: id, name: name, price: price, stock: stock}, success: function(response) { if (response == 'success') { layer.msg('保存成功'); } else { layer.msg('保存失败'); } } }); }
原文地址: https://www.cveoy.top/t/topic/bdhp 著作权归作者所有。请勿转载和采集!