怎么用ajax的post向服务器发送请求

2024-12-15 10:01:26
推荐回答(4个)
回答1:

// 主过程
function startXMLHttp(){
createXMLHttp();
var send_string="name="+document.getElementById("name").value;
send_string= encodeURI(send_string)
xmlHttp.onreadystatechange =stataHandler;
xmlHttp.open("post","ajax_show.php",true);
// xmlHttp.setRequestHeader("cache-control","no-cache");
// 以下两句用POST 时不可少,LZ 参考下
xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xmlHttp.send(send_string); //发送
}

回答2:

你可以用火狐调试一下 看看有没有向后台发送请求。

回答3:

建议查下JQ手册POST的用法

回答4:

不给分啊,怎么帮你啊...............