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

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

      <legend id='P5tp9'><style id='P5tp9'><dir id='P5tp9'><q id='P5tp9'></q></dir></style></legend>
          <bdo id='P5tp9'></bdo><ul id='P5tp9'></ul>

        跨域 Ajax 请求在 Opera 和 IE9 中不起作用?

        Cross-origin Ajax requests don#39;t work in Opera and IE9?(跨域 Ajax 请求在 Opera 和 IE9 中不起作用?)
      1. <small id='hzn4T'></small><noframes id='hzn4T'>

        • <bdo id='hzn4T'></bdo><ul id='hzn4T'></ul>
            <tbody id='hzn4T'></tbody>
            <legend id='hzn4T'><style id='hzn4T'><dir id='hzn4T'><q id='hzn4T'></q></dir></style></legend>

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

                  本文介绍了跨域 Ajax 请求在 Opera 和 IE9 中不起作用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我正在使用这个页面 - http://ecmazing.com/cors.html - 制作对此资源的跨域 Ajax 请求:http://hacheck.tel.fer.hr/xml.pl

                  它适用于 Chrome、Safari 和 Firefox,但不适用于 IE9 和 Opera.

                  代码:

                  var pdata = {'textarea': 'test'};$.post('http://hacheck.tel.fer.hr/xml.pl', pdata, function(data, status, xhr) {output.value = xhr.responseText;});

                  (预期结果是一个 XML 代码字符串.)

                  自己看看: http://ecmazing.com/cors.html

                  在 IE9 和 Opera 中,XHR 对象的 error 处理程序执行并传入此错误对象:

                  <代码>{就绪状态:4,状态:0,状态文本:'错误'}

                  如您所见,这个错误对象并没有透露太多信息.

                  如何让它在 IE9 和 Opera 中运行?

                  解决方案

                  查看 cors at whencaniuse 的条目.p>

                  对于 Internet Explorer,CORS 是在 IE8 和 IE9 中使用 XDomainRequest 对象支持",因此您需要使用备用对象来使用它.

                  Opera 根本不支持它.

                  如果你在 Opera 中需要跨域 Ajax,那就使用 JSON-P.

                  I am using this page - http://ecmazing.com/cors.html - to make a cross-origin Ajax request to this resource: http://hacheck.tel.fer.hr/xml.pl

                  It works in Chrome, Safari and Firefox, but doesn't in IE9 and Opera.

                  The code:

                  var pdata = {'textarea': 'test'};
                  
                  $.post('http://hacheck.tel.fer.hr/xml.pl', pdata, function(data, status, xhr) {
                      output.value = xhr.responseText;
                  });
                  

                  (The expected result is an XML code string.)

                  See for yourself: http://ecmazing.com/cors.html

                  In IE9 and Opera, the error handler of the XHR object executes and this error object is passed in:

                  {
                      readyState: 4,
                      status: 0,
                      statusText: 'error'
                  }
                  

                  As you can see, this error object doesn't reveal much information.

                  How can I make it work in IE9 and Opera?

                  解决方案

                  See the entry for cors at whencaniuse.

                  For Internet Explorer CORS is "Supported somewhat in IE8 and IE9 using the XDomainRequest object", so you need to use an alternate object to use it.

                  Opera simply doesn't support it.

                  If you need cross-domain Ajax in Opera, then use JSON-P.

                  这篇关于跨域 Ajax 请求在 Opera 和 IE9 中不起作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  SCRIPT5: Access is denied in IE9 on xmlhttprequest(SCRIPT5:在 IE9 中对 xmlhttprequest 的访问被拒绝)
                  XMLHttpRequest module not defined/found(XMLHttpRequest 模块未定义/未找到)
                  Show a progress bar for downloading files using XHR2/AJAX(显示使用 XHR2/AJAX 下载文件的进度条)
                  How can I open a JSON file in JavaScript without jQuery?(如何在没有 jQuery 的情况下在 JavaScript 中打开 JSON 文件?)
                  How do I get the HTTP status code with jQuery?(如何使用 jQuery 获取 HTTP 状态码?)
                  quot;Origin null is not allowed by Access-Control-Allow-Originquot; in Chrome. Why?(“Access-Control-Allow-Origin 不允许 Origin null在铬.为什么?)
                  <i id='WZqFl'><tr id='WZqFl'><dt id='WZqFl'><q id='WZqFl'><span id='WZqFl'><b id='WZqFl'><form id='WZqFl'><ins id='WZqFl'></ins><ul id='WZqFl'></ul><sub id='WZqFl'></sub></form><legend id='WZqFl'></legend><bdo id='WZqFl'><pre id='WZqFl'><center id='WZqFl'></center></pre></bdo></b><th id='WZqFl'></th></span></q></dt></tr></i><div id='WZqFl'><tfoot id='WZqFl'></tfoot><dl id='WZqFl'><fieldset id='WZqFl'></fieldset></dl></div>

                    <small id='WZqFl'></small><noframes id='WZqFl'>

                        <tfoot id='WZqFl'></tfoot>
                          <tbody id='WZqFl'></tbody>
                        <legend id='WZqFl'><style id='WZqFl'><dir id='WZqFl'><q id='WZqFl'></q></dir></style></legend>

                            <bdo id='WZqFl'></bdo><ul id='WZqFl'></ul>