如何创建 XMLHttpRequest

发布于 2024-11-04 13:30:10 字数 266 浏览 1 评论 0原文

我只需要对以下用于创建 XMLHttpRequest 的代码进行清晰的解释。

var xhr = false;
if (window.XMLHttpRequest)
{
    xhr = new XMLHttpRequest();
}
else if (window.ActiveXObject)
{
    xhr = new ActiveXObject("Microsoft.XMLHTTP");
}

I just need the clear explanation of the below code for creating XMLHttpRequest.

var xhr = false;
if (window.XMLHttpRequest)
{
    xhr = new XMLHttpRequest();
}
else if (window.ActiveXObject)
{
    xhr = new ActiveXObject("Microsoft.XMLHTTP");
}

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

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

发布评论

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

评论(1

马蹄踏│碎落叶 2024-11-11 13:30:10

它尝试创建本机 XMLHttpRequest 对象,如果失败(旧的 IE 版本),它会尝试使用 XHR ActiveX 对象。

请注意,最好使用例如 jQuery for AJAX - 它很好地包装了它,使您的代码更具可读性并为您节省了大量工作。

It tries to create a native XMLHttpRequest object and if that fails (ancient IE versions), it tries to use the XHR ActiveX object.

Note that it would be good to use e.g. jQuery for AJAX - it wraps it nicely, makes your code much more readable and saves you lots of work.

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