.php echo json_encode('name of your php array');
を用意してください
次に、JavaScript側では、ajaxは次のようになります。
$.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
}
});
データがたくさんある場合は、data.lengthを3などに置き換えてください...適切なデータを取得する場合は、yourJSArray.push(data [i]);を使用してください。実際にはもっと直接的な方法があると確信しています...