当前位置: 代码迷 >> HTML/CSS >> 【html】Ajax异步交付form
  详细解决方案

【html】Ajax异步交付form

热度:376   发布时间:2012-10-08 19:54:56.0
【html】Ajax异步提交form

通过Ajax异步提交form内容:

?

主要是看提交参数的比较好的一个方法:

?

parameters: Form.serialize(FormName);

?

?

完整的一段代码:

var xmlRequest = new Ajax.Request(
    'action.do',
     {
          method:'post',
          onComplete:processResult,  --- 返回时处理的函数
          parameters: Form.serialize(formName)
     }
);

?

?

  相关解决方案