52,800
社区成员
发帖
与我相关
我的任务
分享
var xmlhttp;
function createHTTP()
{
try
{
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
try
{
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e2)
{
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest != 'undefined')
{
xmlhttp = new XMLHttpRequest();
}
}
function startHTTP()
{
createHTTP();
try
{
xmlhttp.open("GET","http://......",true);
xmlhttp.send(null);
if(xmlhttp.readystate == 4)
{
alert(xmlhttp.responsetext);
}
}
catch(e)
{
alert(e.message);
}
}