こんにちは、JSONとajaxを使用してデータベースからデータを取得しています。必要な情報を取得したら、それをdivimの新しい行に表示したいと思います。
その瞬間、郵便番号はお互いを上書きします。
$.ajax({
url: 'process.php',
type: 'GET',
data: 'address='+ criterion,
dataType: 'json',
success: function(data)
{
jQuery.each(data, function()
{
$('#carParkResults').html("Postcode " + data[count].postcode);
codeAddress(data[count].postcode);
alert(count);
count++;
});
},
error: function(e)
{
//called when there is an error
console.log(e.message);
alert("error");
}
});