Ajax request problem: error 80020101

前端 未结 14 2082
[愿得一人]
[愿得一人] 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:12

    I had missed to put 'var' in front of variable declaration, putting that it solved the issue.

    
    

    I fixed it to :

    var uploadDocument = "Some message";
    

    Root cause was that I had an element in the form with the same id "uploadDocument", hence the above declaration was causing the html to be malformed

提交回复
热议问题