$('#submit_btn').click(function(){
var rows = [];
$('#box-table-a tbody tr input[type=checkbox]:checked').each(function(i,v){
var tds = $(v).parents('tr').children('td');
rows.push({
'name': tds.eq(1).find('select').val(),
'units': tds.eq(2).text(),
'calories': tds.eq(3).text(),
'sugar': tds.eq(4).text()
});
});
rows = JSON.stringify(rows); // submit this using $.post(...)
$.post('classes/process.php', {'rows': rows}, function(data){
console.log(data);
});
});
gửi rows
bằng cách sử dụng $ .post () và sau đó, ở phía máy chủ, bạn có thể chuyển đổi lại thành một mảng bằng cách sử dụng json_decode()
;
Đầu ra mẫu:
[{"name":"Nước", "đơn vị":"1", "calo":"2", "đường":"3"}, {"tên":"Thực phẩm", "đơn vị":"4 "," calo ":" 5 "," đường ":" 6 "}]
Bản trình diễn:
http://jsfiddle.net/cp6ne/84/