标签:代码 mat post方法 实现 cat 开发 family 接收 字符串
var xhr = new XMLHttpRequest();
1 xhr.open("GET","demo.asp?t=" + Math.random(),true); 2 xhr.send();
1 xhr.open("GET","demo.asp",true); 2 xhr.setRequestHeader("If-Modified-Since","0"); //设置浏览器不使用缓存 3 xhr.send();
1 xhr.open("POST","postdemo.asp",true); 2 xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); //否则数据无法被正常接收 3 xhr.send("name=amie"); //send里写要发送的数据
1 xhr.onreadystatechange = function () { 2 if (xhr.readyState == 4 && xhr.status == 200) { 3 console.log(xhr.responseText); 4 };
(写在结尾:前端新人一枚~欢迎大家指出错误,谢谢阅览~)
标签:代码 mat post方法 实现 cat 开发 family 接收 字符串
原文地址:http://www.cnblogs.com/YiminLiu/p/6078987.html