Ajax request problem: error 80020101

前端 未结 14 2098
[愿得一人]
[愿得一人] 2020-11-30 13:47

I have a request which returns a jsp page. But the fact is, the jsp includes jsp:include in it(it calls another jsp file in it) and ie gives the error 80020101.

Any

14条回答
  •  心在旅途
    2020-11-30 14:18

    I had the same error, but in my case there was a reserved word 'class'. Here is a snippet of code to make this clear:

    function foo(ajaxResponse){
      $(elem).attr('class', ajaxResponse.class);
    }
    

    I rewrote this as:

    $(elem).attr('class', ajaxResponse['class']);
    

    Hope this was helpful.

提交回复
热议问题