// 主过程
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); //发送
}
你可以用火狐调试一下 看看有没有向后台发送请求。
建议查下JQ手册POST的用法
不给分啊,怎么帮你啊...............