IE 9 Javascript error c00c023f

前端 未结 5 1302
星月不相逢
星月不相逢 2020-12-03 17:46

I came across this error only on IE9:

SCRIPT575: Could not complete the operation due to error c00c023f.

The error happened on

5条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-03 18:18

    Within the readyState==4 routine, include a try and catch similar to:

    try {
        var response=xmlHttp.responseText;
        }
    catch(e) {
        var response="Aborted";
    }
    

    We found that this to be the most successful resolution to the above.

提交回复
热议问题