如何创建 XMLHttpRequest
我只需要对以下用于创建 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它尝试创建本机
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.