发送请求
open(method,url,async);
setRequestHeader(“Content-type”,”application/x-www-form-urlencoded”);
send(string); post下需要string
取得响应值
1.responseText:获取字符串形式的响应数据
2.responseXML:获取XML形式的响应数据
3.status和statusText:以数字和文本的形式返回HTTP状态码
4.getAllResponseHeader():获取所有的响应报头
5.getResponseHeader():获取响应中的某个字段信息
open(method,url,async);
setRequestHeader(“Content-type”,”application/x-www-form-urlencoded”);
send(string); post下需要string
取得响应值
1.responseText:获取字符串形式的响应数据
2.responseXML:获取XML形式的响应数据
3.status和statusText:以数字和文本的形式返回HTTP状态码
4.getAllResponseHeader():获取所有的响应报头
5.getResponseHeader():获取响应中的某个字段信息
2016-12-01