Ajax通用模板实现代码_AJAX教程

编辑Tag赚U币

推荐:Ajax创建XMLHttp对象的完美兼容性代码
Ajax创建XMLHttp对象的完美兼容性代码,需要的朋友可以参考下。

复制代码 代码如下:www.mb5u.com

<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交互方式区别,需要的朋友可以参考下。

来源:模板无忧//所属分类:AJAX教程/更新时间:2013-04-22
相关AJAX教程