JQuery Parsing JSON-Array
Ich habe einJSON
Ausgabe wie folgt:
<code>["City1","City2","City3"] </code>
Ich möchte alle Städtenamen erhalten. Wie kann ich das tun?
<code>$.getJSON("url_with_json_here",function(json){ }); </code>
BEARBEITEN:
<code>$.getJSON('url_here', function(data){ $.each(data, function (index, value) { $('#results').append('<p>'+value+'</p>'); console.log(value); }); }); </code>
Das oben genannte scheint nicht zu funktionieren, es werden keine Werte ausgegeben.