0

我用 formValidation 编写了一个登录表单验证。现在我想在我的脚本中调用这个函数。如何调用 form_login 函数?

(function(){
  $.fn.validation = {
    form_login: function(form){
         $(form).formValidation({
                icon: {
                    valid: 'fa fa-check',
                    invalid: 'fa fa-remove',
                    validating: 'fa fa-refresh'
                },
            fields: {
                usernme: {
                    validators: {
                        notEmpty: {},
                    }
                },
                password: {
                    validators: {
                        notEmpty: {},
                    }
                },
                captcha: {
                    validators: {
                        notEmpty: {},
                    }
                }
            }
        });
    },
  };
 }());
4

1 回答 1

0

与您的代码类似的用法示例(较短):

$.fn.test={
    test_method: function(){alert('a');}
}

var div= "<div></div>";
$(div).test.test_method(); // it will output that alert
于 2015-03-19T15:18:25.857 回答