我有ajax调用如下
$.ajax({type: "GET",
url: url,
cache: false,
dataType: "html",
beforeSend: function() {
// some before code here
}
success: function(resp) {
resp_html = $(resp).find('.somedivclass').html(); //doesnt work for IE8
alert(resp_html);
}
});
当我对resp_html发出警报时,对于其他浏览器,它可以正常工作。 但对于IE8它不是吗?为什么?以下两种调用都不适用于IE8。
resp_html = $(resp).find('.somedivclass').html(); //doesnt work for IE8
或者
resp_html = $('.somedivclass', resp).html(); //doesnt work for IE8