Home  >  Article  >  Web Front-end  >  javascript一个无懈可击的实例化XMLHttpRequest的方法_javascript技巧

javascript一个无懈可击的实例化XMLHttpRequest的方法_javascript技巧

WBOY
WBOYOriginal
2016-05-16 18:18:461027browse
复制代码 代码如下:

function getHTTPRequest()
{
var xhr = false;
if (window.XMLHttpRequest)
xhr = new XMLHttpRequest(); //IE除外的浏览器
else if (window.ActiveXObject)
{
try
{
xhr = new ActiveXObject("Msxm12.XMLHTTP");//最新版的ActiveX对象
}
catch(e)
{
try
{
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
catch(e)
{
xhr = false;
}
}
}
}

接下来是一个应用的实例:
复制代码 代码如下:

//完整的GET请求
var request = getHTTPRequest();
if(request)
{
request.onreadystatechange = dosomething;
request.open("GET","file.doc",true);
request.send(null);
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn