1. <i id='M5VjT'><tr id='M5VjT'><dt id='M5VjT'><q id='M5VjT'><span id='M5VjT'><b id='M5VjT'><form id='M5VjT'><ins id='M5VjT'></ins><ul id='M5VjT'></ul><sub id='M5VjT'></sub></form><legend id='M5VjT'></legend><bdo id='M5VjT'><pre id='M5VjT'><center id='M5VjT'></center></pre></bdo></b><th id='M5VjT'></th></span></q></dt></tr></i><div id='M5VjT'><tfoot id='M5VjT'></tfoot><dl id='M5VjT'><fieldset id='M5VjT'></fieldset></dl></div>

      1. <small id='M5VjT'></small><noframes id='M5VjT'>

        <legend id='M5VjT'><style id='M5VjT'><dir id='M5VjT'><q id='M5VjT'></q></dir></style></legend>

        • <bdo id='M5VjT'></bdo><ul id='M5VjT'></ul>
        <tfoot id='M5VjT'></tfoot>

        NETWORK_ERR:XMLHttpRequest 异常 101

        时间:2023-10-14

          <tfoot id='CMo7A'></tfoot>
            <bdo id='CMo7A'></bdo><ul id='CMo7A'></ul>
            <i id='CMo7A'><tr id='CMo7A'><dt id='CMo7A'><q id='CMo7A'><span id='CMo7A'><b id='CMo7A'><form id='CMo7A'><ins id='CMo7A'></ins><ul id='CMo7A'></ul><sub id='CMo7A'></sub></form><legend id='CMo7A'></legend><bdo id='CMo7A'><pre id='CMo7A'><center id='CMo7A'></center></pre></bdo></b><th id='CMo7A'></th></span></q></dt></tr></i><div id='CMo7A'><tfoot id='CMo7A'></tfoot><dl id='CMo7A'><fieldset id='CMo7A'></fieldset></dl></div>

              <legend id='CMo7A'><style id='CMo7A'><dir id='CMo7A'><q id='CMo7A'></q></dir></style></legend>

                    <tbody id='CMo7A'></tbody>

                1. <small id='CMo7A'></small><noframes id='CMo7A'>

                2. 本文介绍了NETWORK_ERR:XMLHttpRequest 异常 101的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我在 Chrome 中遇到 AJAX 问题,出现以下错误:

                  I'm having an AJAX problem in Chrome, giving the following error:

                  Uncaught Error: NETWORK_ERR: XMLHttpRequest Exception 101
                  

                  这是我的代码:

                  function IO(filename) {
                      if (window.XMLHttpRequest) { // Mozilla, Safari,...
                          xmlhttp = new XMLHttpRequest();
                  
                      } else if (window.ActiveXObject) { // IE
                          try {
                              xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
                          } catch (e) {
                              try {
                                  xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
                              } catch (e) { }
                          }
                      }
                  
                      xmlhttp.open("GET", filename+"?random="+Math.floor(Math.random()*100000001), false);
                      xmlhttp.send();
                  
                      if(xmlhttp.readyState==4)
                          return xmlhttp.responseXML;
                  }
                  

                  推荐答案

                  解决方案是将 async 参数设置为 true:

                  The solution is setting the async parameter to true:

                  xmlhttp.open("GET", filename+"?random="+Math.floor(Math.random()*100000001), true);
                  

                  这篇关于NETWORK_ERR:XMLHttpRequest 异常 101的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:覆盖 XMLHttpRequest 的发送方法 下一篇:浏览器对 json ajax 响应的 Content-Type 标头有什么要

                  相关文章

                  最新文章

                3. <small id='bM6Er'></small><noframes id='bM6Er'>

                      • <bdo id='bM6Er'></bdo><ul id='bM6Er'></ul>
                      <tfoot id='bM6Er'></tfoot><legend id='bM6Er'><style id='bM6Er'><dir id='bM6Er'><q id='bM6Er'></q></dir></style></legend>
                    1. <i id='bM6Er'><tr id='bM6Er'><dt id='bM6Er'><q id='bM6Er'><span id='bM6Er'><b id='bM6Er'><form id='bM6Er'><ins id='bM6Er'></ins><ul id='bM6Er'></ul><sub id='bM6Er'></sub></form><legend id='bM6Er'></legend><bdo id='bM6Er'><pre id='bM6Er'><center id='bM6Er'></center></pre></bdo></b><th id='bM6Er'></th></span></q></dt></tr></i><div id='bM6Er'><tfoot id='bM6Er'></tfoot><dl id='bM6Er'><fieldset id='bM6Er'></fieldset></dl></div>