我有一个 jquery ajax 请求如下;
$.ajax({
type: 'POST',
url: 'ajax.php',
dataType: 'json',
cache: false,
success: function(result) {
alert (result);
},
});
返回result
的是 JSON。为了查看数据,我提醒了它,如下所示;
img1.jpg,img2.jpg,img3.jpg,img4.jpg
php文件如下;
<?php
$array = array("img1.jpg","img2.jpg","img3.jpg","img4.jpg");
echo json_encode($array);
?>
它回响;
["img1.jpg","img2.jpg","img3.jpg","img4.jpg"]
我想提醒filename
每个文件名。我怎样才能做到这一点?