我对如何使用 jQuery.validate 插件访问提交的表单感到困惑。
在 API 选项的“成功”选项中:http: //jquery.malsup.com/form/#options-object
它说成功函数中的第 4 个参数是 jquery 包装的表单对象,但我尝试使用 jQuery 访问它时一直说它的undefined
.
这是成功功能在他们的示例页面上的外观:http: //jquery.malsup.com/form/#ajaxSubmit
function showResponse(responseText, statusText, xhr, $form) {
var id=$form.attr('id');
console.log('id:'+id);
}
不幸的是,console.log 说Uncaught TypeError: Cannot call method 'attr' of undefined.
有什么想法吗?
谢谢,蒂姆