var _url = 'http://192.168.XX.XX:9500/Hotel'; $.ajax({ url: _url,type: 'GET',cache: false,processData: false,contentType: false }).done(function (data) { console.log('success,' + data); $(data).each(function (index,obj) { $("#HotelList").append("<p class='hotelname' data-id='" + obj.Key + "'>" + obj.Value + "</p>"); }); }).fail(function (res) { console.log('fail,' + res); });