ValidationEngine不适用于动态创建的表单

时间:2014-02-05 19:42:26

标签: javascript jquery html validation jquery-validation-engine

在动态创建表单后,validationEngine不再起作用

      $(window).load(function($) {

        var form = document.createElement('form');
        form.setAttribute('id', 'xform');

        var lbl_usr = document.createElement('label');

        var input_usr = document.createElement('input');
        input_usr.setAttribute('id', 'user');
        input_usr.setAttribute('name', 'user');
        input_usr.setAttribute('class', 'user-txt');

        var submit = document.createElement('input');
        submit.setAttribute('type', 'submit');
        submit.setAttribute("value", "login");
        submit.setAttribute('id', 'login');

        form.appendChild(lbl_usr);
        form.appendChild(input_usr);
        form.appendChild(submit);

        var divLog = document.getElementById('log');
        divLog.appendChild(form);

       });

我已将ValidationEngine配置为如下所示:

    // I have tried attach to the form the validationEngine
    // on document ready, load and without both but it doesn't working            
    $("#xform").validationEngine('attach',{
          onValidationComplete: function(form, status){
             $("#xform").bind('submit', function(e) {
                e.preventDefault();
             });
        },
        maxErrorsPerField: 1,
        custom_error_messages : {
            // Custom Error Messages for Validation Types
            '.user-txt': {
               'minSize': {
                 'message': "less than required."
               },
               'required': {
                 'message': "required"
               }
            }
        }
     });

     $(document).on('click', '#login', function (e) {
        $('#xform').validationEngine('validate');
     });

     // I have tried this but without success for a dynamically form
     // created, for a static form this works fine
     $('#login').click(function() {
          $('#xform').validationEngine('validate');
     });

  });

我不知道为什么这不起作用以及这段代码出了什么问题......

一些帮助会很棒

由于

1 个答案:

答案 0 :(得分:1)

除了验证器之外,问题在于您的代码。您的表单在什么条件下得到验证?只需添加此行(posabsolute的jquery验证引擎,能够从HTML5数据属性中读取选项):

input_usr.setAttribute('data-validation-engine', 'validate[required]');

Here您可以在上一行的方括号中使用的验证器列表。