我正在尝试使用Google Invisible reCAPTCHA,我在第一部分时遇到了一些困难。
我需要首先验证表单字段(使用h5Validate)然后如果它们有效则提交令牌。当我尝试使用下面的位时,它似乎没有验证表单,然后在我的控制台中它声明它找不到函数onSubmit。
有什么想法我能做到这一点吗?
$('.user_contact_form').each(function() {
var $this = $(this);
$this.h5Validate();
$this.ajaxForm({
target: 'contact_form_wrapper',
url: '/contact-form',
type: 'post',
beforeSubmit: function(arr, $form, options) {
contactShowHide();
function onSubmit(token) {
$this.submit();
}
}
});
});