XMLHttpRequest里的setRequestHeader到底怎么用
1 回答
MMTTMM
TA贡献1869条经验 获得超4个赞
var method = "get";
var url = "test.php";
var async = true;
var data = "username=" + encodeURIComponent(username) + "&password=" + encodeURIComponent(password)
xmlHttp.open(method, url, async);
//设置回调函数,接收服务器端的信息以进行处理
xmlHttp.onreadystatechange = getServerInfo;
//想服务器端发送内容,为什么不起作用呢?
xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xmlHttp.setRequestHeader("Content-Length", data.length);
xmlHttp.send(data);
- 1 回答
- 0 关注
- 711 浏览
添加回答
举报
0/150
提交
取消