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);
}

最佳答案

在jQuery中,您已经完成了所有工作...

$.post("/contact.jsp", $("formID").serialize(), function(data){
    // process callback
});


jQuery还将设置所有适当的(并且以某种方式标准化的)请求标头。

10-07 19:10
查看更多