jValidate allows for an easIEr and cleaner way of valiDating forms on the client side. It’s key features are that it puts Validation rules in semantic HTML (inputs with class email are validates as emails, etc), is passive not aggressive, is easy to Access and trigger.

There are several built in validation rules; email, url, number, string, ip, date. As well as general length restrictions with miNimum length, max length and in a range. It’s also very simple to add your own validation rules, it’s easiest if you know regular Expressions but it’s not a must.

There are several ways to check for validation:

  • With a Function $('input').validate();
  • With selecTors $('input:valid');
  •  
  • With listeners $('input').listenValidation();
  •  

Use

 




// JavaScript
$(’form :invalid’).each(function() {
    // $(this) is invalid
}
$(’form input’).each(function() {
    if($(this).validate()) {
        // $(this) is valid
    }
}
$(’form *’).listenValidation();

 


Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务