首页 相关文章 XMLHttpRequest of ajax

XMLHttpRequest of ajax

调用 function(Url) {
var XML = new XMLHttpRequest();
XML.onreadystatechange = function() {
if (XML.readyState == 4)
{
if (XML.status == 200)
{
//XML.responseText
}
else
{
//XML.statusText
}
}
else
{
//数据加载中...
}
};
XML.open("GET",Url);
XML.send(null);
};定义XMLHttpRequest 适应不同的浏览器 // IE support
if (window.ActiveXObject && !window.XMLHttpRequest)
[ 查看全文 ]

2016-02-19 标签:

XMLHttpRequest of ajax的相关文章

手机页面
收藏网站 回到头部