您现在的位置:主页 > 技术中心 > WEB编程 > Ajax技术

Ajax使用POST方法

来源:网络收集 责任编辑:admin 发表时间:2013-07-01 13:54 点击:
Ajax使用POST方法 
<form method="post" action="test.do" onsubmit="sendRequest();return false">

function getRequestBody(oForm){
  var aParams=new Array();
  for(var i=0;i<oForm.elements.length;i++){
    var sParam=encodeURIComponent(oForm.elements[i].name);
 sParam+="=";
 sParam+=encodeURIComponent(oForm.elements[i].value);
 sParams.push(sParam);
  }
  return aParams.join("&");
}

function sendRequest(){
  var oForm=document.forms[0];
  var sBody=getRequestBody(oForm);
  var oXmlHttp=createRequest();
  oXmlHttp.open("post",oForm.action,true);
  oXmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
  oXmlHttp.onreadystatechange=function(){
    if(oXmlHttp.readyState==4){
   saveResult(oXmlHttp.responseText);
 }else{
   saveResult("An error accurred: "+oXmlHttp.statusText);
 }
  }
  oXmlHttp.send(sBody);
    发表评论
    请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
    评价:
    表情:
    用户名: 验证码:点击我更换图片
    ?? - ?? - ÝřŝžľŘÝź - TAGąęÇŠ - RSSśŠÔÄ - ??
    Copyright © 2004-2024 上海卓卓网络科技有限公司