ajaxForm 错误回调内的表单对象
我试图在 ajaxForm 的 error 方法中访问我的表单对象:
$('#foo').ajaxForm({
error: function(){
// where's my $('#foo') object?
}
});
error 可以接受 3 个参数,但它们都不是表单对象,这也返回 url,但同样没有表单。
有什么建议吗?
I'm trying to access my form object inside of ajaxForm's error method:
$('#foo').ajaxForm({
error: function(){
// where's my $('#foo') object?
}
});
error can take 3 params, but none of them are the form object, also this returns the url, but again no form.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
棘手,为什么不使用:
如果有另一种方法,我很想了解自己。
Tricky, why not use:
If there is another way, I'd love to know myself.
在 ajaxForm 中,表单元素本身可以在
beforeSubmit
部分中访问:In ajaxForm The form element itself is accessible in
beforeSubmit
section:如果您阅读该插件文档中的“使用字段”选项卡,我想您会找到答案。
为了提高性能,您应该在绑定 ajaxForm 之前存储对表单的引用。
If you read the tab 'Working with Fields' in that plugin's docs, I think you'll find your answer.
For performance, you should probably store a reference to the form before you bind the ajaxForm.
这个
不起作用吗? IE,Does
this
not work? I.e.,