jQuery表单验证插件 jValidate

码农软件 · 软件分类 · jQuery表单及相关 · 2019-12-24 14:42:32

软件介绍

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

 

<input class=”email” name=”email” type=”text” />
<input type=”text” name=”username” rel=”[5,15]” />

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

 

本文地址:https://www.codercto.com/soft/d/21855.html

再启动

再启动

[日] 大前研一 / 田龙姬、金枫 / 中华工商联合出版社有限责任公司 / 2010-1 / 29.00元

1、“全球管理大师”、“日本战略之父”大前研一,职场励志最新巨作。 2、2010年1月中华工商联合出版社有限责任公司与日知公司继《货币战争2》《中国大趋势》之后,再度联手,重磅推出。 3、震撼中国职场的宗师级巨作,势必引领2010年中国职场4、世界著名出版商小学馆授予独家中文简体出版权。 5、试问,哪个老板不希望自己的员工不断实现自身的“再启动”呢? 6、只有不断激励鞭策自......一起来看看 《再启动》 这本书的介绍吧!

MD5 加密
MD5 加密

MD5 加密工具

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具