var xmlHttp;
function RefreshORP(eventTarget, eventArgument)
{
xmlHttp = GetXmlHttpObject();
if(xmlHttp == null)
{
return true;
}
xmlHttp.onreadystatechange = StateChanged;
var params = GetFormParam(eventTarget,eventArgument);
xmlHttp.open("POST","/contact.jsp",true);
xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlHttp.setRequestHeader("ajaxcall", "true");
xmlHttp.send(params);
}
答案 0 :(得分:6)
在jQuery中你完成了所有工作......
$.post("/contact.jsp", $("formID").serialize(), function(data){
// process callback
});
jQuery还将设置所有适当的(以某种方式标准化的)请求标头。