检测浏览器对跨域 XMLHttpRequests 的支持?

Detect browser support for cross-domain XMLHttpRequests?(检测浏览器对跨域 XMLHttpRequests 的支持?)
本文介绍了检测浏览器对跨域 XMLHttpRequests 的支持?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我正在开发一些 Javascript,它利用 Firefox 3.5 执行跨域 XMLHttpRequests 的能力……但如果它们不受支持,我想优雅地失败.

I'm working on some Javascript that makes use of Firefox 3.5's ability to perform cross-domain XMLHttpRequests… But I'd like to fail gracefully if they aren't supported.

除了实际发出跨域请求外,还有什么方法可以检测浏览器对它们的支持吗?

Apart from actually making a cross-domain request, is there any way to detect a browser's support for them?

推荐答案

为了将来参考,完整的 CORS 特征检测应该如下所示:

For future reference, full CORS feature detection should look something like this:

//Detect browser support for CORS
if ('withCredentials' in new XMLHttpRequest()) {
    /* supports cross-domain requests */
    document.write("CORS supported (XHR)");
}
else if(typeof XDomainRequest !== "undefined"){
  //Use IE-specific "CORS" code with XDR
  document.write("CORS supported (XDR)");
}else{
  //Time to retreat with a fallback or polyfill
  document.write("No CORS Support!");
}

您可以使用 JSBin 进行现场测试,并在 IE、Firefox、Chrome、Safari 和歌剧.

You can try this test live using JSBin and see the proper response in IE, Firefox, Chrome, Safari, and Opera.

在非浏览器环境中存在一些支持跨域 XHR 但不支持 XHR2/CORS 的边缘案例.此测试不考虑这些情况.

There are some edge cases in non-browser environments that do support cross-domain XHR but not XHR2/CORS. This test does not account for those situations.

这篇关于检测浏览器对跨域 XMLHttpRequests 的支持?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

相关文档推荐

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在铬.为什么?)