Ajax通用模板实现代码_AJAX教程
推荐: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教程:
- 相关链接:
- 教程说明:
AJAX教程-Ajax通用模板实现代码。