我想循环遍历table
tds以获取特定的单元格数据以将它们插入到数据库中,问题是当我将结果推送到数组时它们彼此出现而不是单独的tds结果,是吗想念什么?
结果
Array
(
[0] => 8
[1] => 3
[2] => 22
[3] => All quantity finally confirmed
[4] => 8
[5] => 2
[6] => 9
[7] => Not all quantity finally confirmed
)
功能
function UpdateResults()
{
var table = $('#SearchResults');
var OrderID;
var CatID;
var ProID;
var Status;
var data = [];
table.find('tbody tr').each(function()
{
OrderID = $(this).find("td").eq(0).html();
CatID = $(this).find("td").eq(3).html();
ProID = $(this).find("td").eq(4).html();
Status = $(this).find("td:eq(6) select").val();
data.push(OrderID,CatID,ProID,Status);
});
jsonString = JSON.stringify(data);
$.ajax({
type:"POST",
url : 'UpdateResults.php',
data : {'Data':jsonString}
}).done(function(response) {
alert ("Done");
});
}
答案 0 :(得分:0)
使用将在php中转换为关联数组的js对象将数据成对推送:
table.find('tbody tr').each(function()
{
OrderID = $(this).find("td").eq(0).html();
CatID = $(this).find("td").eq(3).html();
ProID = $(this).find("td").eq(4).html();
Status = $(this).find("td:eq(6) select").val();
data.push({OrderID:OrderID,CatID:CatID,ProID:ProID,Status:Status});
});
PHP:
foreach($_POST['data'] as $data) {
echo $data['OrderID'];
}