ajax提交的javascript代码

前端之家收集整理的这篇文章主要介绍了ajax提交的javascript代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

var xhr=xhr();

function xhr(){

if(window.XMLHttpRequest){

return window.XMLHttpRequest();

}else if(window.ActiveXObject){

return new ActiveXObject("Microsoft.XMLHTTP");

}catch(e){

try{

return new ActiveXObject("Msxml2.XMLHTTP");

}catch (ex){}

}

}

}

xhr.open("get","url","true");

xhr.onreadystatechange=function(){

if(xhr.readyState==4&&(xhr.status==200||xhr.status==304)){

document.getElementById("myDiv").innerHTML=xhr.responseText;

}

}

xhr.send();

原文链接:https://www.f2er.com/ajax/161426.html

猜你在找的Ajax相关文章