I have a jquery ajax request as follows;
$.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
The php file is as;
<?php
$array = array("img1.jpg","img2.jpg","img3.jpg","img4.jpg");
echo json_encode($array);
?>
它赞同;
["img1.jpg","img2.jpg","img3.jpg","img4.jpg"]
我想提醒每个档案名称的<密码>。 我如何能够这样做?