$.ajax({
type: 'POST',
url: 'demo.php',
dataType: 'json',
success:function(result)
{
$obj[] = JSON.parse(result);
$('#id1').html($obj[1][1]);
$('#name1').html($obj[1][2]);
php file:=>
while($row = mysqli_fetch_array($result, MYSQLI_BOTH)){
$rows[] = $row; }
echo json_encode($rows);
我不知道如何将$行传递给ajax。($ rows包含2行,4列包含2个图像)。请帮忙。
答案 0 :(得分:0)
您好,您可以通过以下
执行此操作var object = {};
object.id = 34;
JSON.stringify(obj);
答案 1 :(得分:0)
$。AJAX({
type: 'POST',
url: 'demo.php',
dataType: 'json',
success:function(data)
{
for(i=0; i<data.length; i++){
$('#id1').html(data[i].obj);
}
}
});
如果这不能用于发布成功功能后的数据