Ajax通用模板的详细代码介绍

来源:爱站网时间:2022-05-23编辑:网友分享
怎么用Ajax来实现通用模板?对这方面想要了解清楚的朋友,可以看看爱站技术频道小编所整理的资料,希望小编整理的这篇文章能帮助到朋友们解决问题。
代码如下:
<script type="text/javascript">
var xmlHttp;

function creatXMLHttpRequest() {
if (window.ActiveXObject) {
xmlHttp = new ActiveXObject("Microsoft.XMLHttp");
}
else if (window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
}

}
function startRequest() {
creatXMLHttpRequest();
xmlHttp.onreadystatechange = handleStateChange;
xmlHttp.open("GET", "simpleResponse.xml", true);
xmlHttp.send(null);

}
function handleStateChange() {
if (xmlHttp.readyState == 4) {
if (xmlHttp.status == 200) {
// document.getElementById("results").innerHTML = xmlHttp.responseText;
// alert("The server replied with:" + xmlHttp.responseText);
}
}

}
</script>

上述文章就是关于Ajax通用模板的详细代码介绍全内容了,相信朋友们看完后都知道怎么处理了。身边有需要这类文章的朋友,不妨分享出去吧!

上一篇:Ajax中关于get方法调用缓存处理的方法

下一篇:FormData+Ajax上传进度条详细介绍

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载