Ok có .php echo json_encode('name of your php array');
Sau đó, về phía javascript, ajax của bạn sẽ trông giống như sau:
$.ajax({
data: "query string to send to your php file if you need it",
url: "youphpfile.php",
datatype: "json",
success: function(data, textStatus, xhr) {
data = JSON.parse(xhr.responseText);
for (i=0; i<data.length; i++) {
alert(data[i]); //this should tell you if your pulling the right information in
}
});
có thể thay data.length bằng 3 hoặc thứ gì đó nếu bạn có nhiều dữ liệu ... nếu bạn nhận được dữ liệu phù hợp, hãy sử dụng yourJSArray.push (data [i]); Tôi chắc rằng có một cách trực tiếp hơn thực sự ...