Form Validation With Bootstrap (jQuery)

前端 未结 5 741
梦谈多话
梦谈多话 2020-12-02 07:09

Can someone please help me with this code? I am using bootstrap for the form and trying to validate it with jQuery. Unfortunately, the form validation isn\'t telling me what

5条回答
  •  鱼传尺愫
    2020-12-02 07:52

    Check this library, it's completable with booth bootstrap 3 and bootstrap 4

    jQuery

    Javascript

    $(document).on('blur', '[data-validator]', function () {
        new Validator($(this));
    });
    

提交回复
热议问题