$(document).ready(function() { $.ajax({ url: '../json/city.json', type: 'get', contentType: "application/json; charset=utf-8", dataType: "json", cache: false, data: {}, success: function(data) { var cityData = data.selectCtiy; $.each(cityData, function(i, val) { $(".searchCity").append($('', { value: (i + 1), text: val.city })); }); }, error: function(xhr, status, errorThrown) { console.log(errorThrown + '\n' + status + '\n' + xhr.statusTex); } }); });