$('#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);
});
});
indsend rows
ved at bruge en $.post() og derefter, på serversiden, kan du konvertere tilbage til et array ved hjælp af json_decode()
;
Eksempeloutput:
[{"name":"Vand","units":"1","calories":"2","sugar":"3"},{"name":"Mad","units":"4 ","kalorier":"5","sukker":"6"}]
Demo:
http://jsfiddle.net/cp6ne/84/