复制代码 代码如下:
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>
您可能感兴趣的文章:- jQuery中使用Ajax获取JSON格式数据示例代码
- jquery之ajaxfileupload异步上传插件(附工程代码)
- JavaScript调用ajax获取文本文件内容实现代码
- Ajax请求内嵌套Ajax请求示例代码
- js获取ajax返回值代码
- 利用jQuery中的ajax分页实现代码
- jQuery ajax分页插件实例代码
- Jquery ajax加载等待执行结束再继续执行下面代码操作
- php+ajax无刷新上传图片实例代码
- ajax基本通用代码示例