//var xmlHttpReq = new ActiveXObject("MSXML2.XMLHTTP.3.0");
//定义变量,存储对象
var xmlHttp;
// 创建XMLHttpRequest对象
if (window.ActiveXObject) {
xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
} else if (window.XMLHttpRequest) {
xmlHttpReq = new XMLHttpRequest();
}
xmlHttpReq.open("GET", "http://localhost:9090/html5/test", false);
xmlHttpReq.onreadystatechange = handleStateChange;
xmlHttpReq.send();
// xmlHttpReq.responseText
// xmlHttpReq.responseXML
var htmlObj = "";
htmlObj += "=============状态码=================<br>";
htmlObj += "status=" + xmlHttpReq.status + "<br>";
htmlObj += "statusText=" + xmlHttpReq.statusText + "<br>";
htmlObj += "=============头信息=================<br>";
htmlObj += "heads=" + xmlHttpReq.getAllResponseHeaders() + "<br>";
htmlObj += "Content-Length=" + xmlHttpReq.getResponseHeader("Content-Length") + "<br>";
htmlObj += "=============返回信息=================<br>";
htmlObj += "responseStream=" + xmlHttpReq.responseStream + "<br>";
var obj = document.getElementById("showDiv");
obj.innerHTML = htmlObj;
function handleStateChange() {
// 请求的状态有5个值:0=未初始化;1=正在加载;2=已经加载;3=交互中;4=完成;
if (xmlHttpReq.readyState == 4) {
// 200对应OK,如404=未找到网页
if (xmlHttpReq.status == 200) {
// alert(xmlHttpReq.responseText);
}
}
}
相关文章
- 12-23ROS学习(十三)—— 编写简单的Service和Client (C++)
- 12-23双重差分DID方法免费课程, 文章, 数据和代码全在这里, 优秀学人必须收藏学习!
- 12-23git学习(五):克隆和推送远程仓库
- 12-23《Go语言并发之道》学习笔记之第6章 goroutine和Go语言运行时
- 12-23GO语言学习笔记之协程和管道
- 12-23《动手学深度学习》Task06-1:批量归一化和残差网络
- 12-23《动手学深度学习》Task06 :批量归一化和残差网络;凸优化;梯度下降
- 12-23Python中tuple和list的区别?Python基础学习!
- 12-23list 和 tuple——python基础学习
- 12-23日期:7.25;内容:制作了个人学习时间的累加和展现。