jQuery validation onblur

前端 未结 6 1256
迷失自我
迷失自我 2020-12-01 12:26

I am trying to get the jQuery validation working on a webpage I am creating. I have about 6 different fieldsets that contain the page\'s details. I am using this as I am hid

6条回答
  •  庸人自扰
    2020-12-01 12:35

    I can't see anything in the docos that can do that. The only other way i can think of doing it is.

    $('#field1, #field2, #field3').blur(function(){
        validator.validate()
    });
    

提交回复
热议问题