如何从AjaxForm成功地获得表单元素



我使用AjaxForm来处理表单。

在"success"中,我需要返回一个表单字段。成功函数在作者页面上有以下信息:

成功在提交表单后调用的回调函数。如果提供了'success'回调函数,则在从服务器返回响应后调用它。它被传递以下参数:

    1.) responseText or responseXML value (depending on the value of the dataType option).
    2.) statusText
    3.) xhr (or the jQuery-wrapped form element if using jQuery < 1.4)
    4.) jQuery-wrapped form element (or undefined if using jQuery < 1.4)

最后一个是$form,据说里面包含了所有的form元素。如何在变量中获得一个特定的表单元素,以便使用它?我不明白什么是jquery包装表单元素

我使用的插件是:

http://malsup.com/jquery/form/options对象

完整回调函数的第三个参数应该包含对元素的引用:

{
   ...
   complete: function(xhr, msg, el) { ... }
   ...
}

相关内容

  • 没有找到相关文章

最新更新