Ok, haben Sie Ihre .php echo json_encode('name of your php array');
Dann sollte Ihr Ajax auf der Javascript-Seite etwa so aussehen:
$.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
}
});
Ersetzen Sie vielleicht data.length durch 3 oder so, wenn Sie viele Daten haben ... wenn Sie die richtigen Daten erhalten, verwenden Sie a yourJSArray.push (data [i]); Ich bin mir sicher, dass es einen direkteren Weg gibt...