2
$.ajax({
    url: "FetchApplicationList",
    async: true,
    type: "GET",
    success: function (result) {
        alert(result); // this is giving undefined in IE but working fine in firefox and chorme

        $(result).find('app').each(function () {
            appList.push($(this).find('appName').text());
        });
    },
    error: function (e) {
        alert(e.message);
    }
});
4

0 回答 0