0

我正在使用 Jquery 表单验证库

我需要用它来验证文件输入。我的代码如下:

    $.validate({
        form : '#form',
        modules : 'file',
        validateOnBlur : false,
        borderColorOnError : 'red',
        inputParentClassOnError : 'error',
        scrollToTopOnError: false,
        errorMessageClass: 'text-error',

        onError : function() {

        },
        onSuccess: function($form) {
            // The input button is disabled if the form contains backend validations
            $form.find('input[type="submit"]').unbind('click');
            return true;
        }
    });

问题是当我尝试加载模块文件时,它给了我一个 JS 错误

类型错误:a.formUtils 未定义”在 file.js

我无法找出问题所在。

任何帮助将不胜感激!谢谢你。

4

0 回答 0