IE8:在AJAX响应中,在响应html中查找标记不起作用,但适用于其他浏览器

时间:2015-02-05 09:03:49

标签: jquery ajax

我有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

0 个答案:

没有答案