0

我正在使用 jquery 验证插件来验证 jquery 中的时间......但它总是显示一个错误,这真的让我抓狂。

未捕获的类型错误:无法调用未定义的方法“addMethod”

 $("input").blur(function() {
                //var check =$(this).closest('tr').find('input');
                $(this).each(function() {
                $.validator.addMethod(this, function(value, element) {  
                return this.optional(element) || /^(([0-1]?[0-9])|([2][0-3])):([0-5]?[0-9])(:([0-5]?[0-9]))?$/i.test(value);  
                    }, "Please enter a valid time.");

              $("#check").validate({
                          rules: {
                             input: "required time"
                                  }

                });
4

1 回答 1

0

您缺少页面中的验证器库,请在页面中包含该

<script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.1/jquery.validate.js"></script>

$.validator.addMethod('timevalue', function(value, element) {  
    return this.optional(element) || /^(([0-1]?[0-9])|([2][0-3])):([0-5]?[0-9])(:([0-5]?[0-9]))?$/i.test(value);  
}, "Please enter a valid time.");


$("#check").validate({
    rules: {
        timevalue: true
    }
});
于 2013-06-18T10:10:23.330 回答