XMLHttpRequest responseType="document" 是吗?谷歌浏览器支持吗?

发布于 2024-12-28 07:59:02 字数 584 浏览 0 评论 0 原文

有关我可以使用的信息表明 Chrome 支持 XMLHttpRequest Level 2。
我在 Chrome 扩展程序中使用了 来自 MDC 的示例

var xhr = new XMLHttpRequest();
xhr.onload = function() {
  alert(this.responseXML.title);
}
xhr.open("GET", url);
xhr.responseType = "document";
xhr.send();

但是,xhr.responsexhr.responseXMLonload 中均为 null(状态为 200 OK)。
Chrome 是否支持此功能?人们实际上在哪里寻找它是否支持?

Information on Can I Use says that Chrome supports XMLHttpRequest Level 2.
I used example from MDC in my Chrome extension:

var xhr = new XMLHttpRequest();
xhr.onload = function() {
  alert(this.responseXML.title);
}
xhr.open("GET", url);
xhr.responseType = "document";
xhr.send();

However, xhr.response and xhr.responseXML are both null in onload (status is 200 OK).
Is this supported in Chrome and where people actually look to find out whether it is?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甲如呢乙后呢 2025-01-04 07:59:02

MDC 文档称 Chrome 18+ 支持它。您使用什么版本?

MDC documentation says it's supported in Chrome 18+. What version are you using?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文