Could not complete the operation due to error 80020101

做~自己de王妃 提交于 2019-12-01 08:57:55
Andrew Leach

Error 80020101 is an AJAX error, so there are a number of potential issues to investigate. A useful starting point might be a prior SO question https://stackoverflow.com/a/10275316/1204258 which deals with trailing commas in object definitions.

I got the same error in an included js file. it appeared only in IE.

the problem was because of missing </script> tag at the end of include file.

hope to help.

Had the same non-foundable error on IE9.

There was an AJAX request transfering a ....

Solved the error with this:

<script type="text/javascript">
    //<![CDATA[

    ... code goes here ...

    //]]>
</script>

Same thing was happening to me while using ExtJS to "require" modular javascript code. The reason: I included the "extends" keyword by mistake, which is reserved in IE8. Make sure you're not using any reserved keywords as your attribute keys without putting them in quotes first.

I got the same issue in IE, the problem was the html comment used in the javascript Replaced the html comment with javascript comment, then it's works fine for me.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!