Jquery验证停止工作

时间:2010-07-27 13:45:57

标签: javascript jquery jquery-validate html-form

这是我对validate函数的调用。这段代码一切正常。

$('#createForm').validate(function () {
});

但是当我尝试稍微修改它时,整个验证停止工作:

$('#createForm').validate(function () {
               errorPlacement: function(error, element) {
                 error.insertAfter(element);
               },
               debug:true

            });

任何想法?

2 个答案:

答案 0 :(得分:3)

你不应该有 function()。将其更改为:

$('#createForm').validate(
    {
         errorPlacement: function(error, element) {
                 error.insertAfter(element);
         },
         debug:true

      }
);

{}中的内容是选项。它不是一个功能:)

答案 1 :(得分:2)

只需移除function ()中的.validate(function () {,这应该有用......