Ajax通用模板实现代码

前端技术 2023/09/08 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>

本文地址:https://www.stayed.cn/item/22127

转载请注明出处。

本站部分内容来源于网络,如侵犯到您的权益,请 联系我

我的博客

人生若只如初见,何事秋风悲画扇。