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

公众号运营实战手册

公众号运营实战手册

中信出版社 / 2018-11 / 58

作者粥左罗在刚入行做新媒体的一年时间里,就写了100篇阅读量10万+的公众号文章,但是在此之前,他足足花了两个月的时间研究公众号运营和爆款文章的逻辑和打法。 这本书就是他总结和归纳自己公众号写作和运营的全部秘诀和技巧,是一本行之有效的实战指南。 从如何注册一个公号,给公号起什么名字? 多长时间更新一次为好? 到如何找选题,如何积累爆款素材? 如何编辑内容,如何做版面设......一起来看看 《公众号运营实战手册》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

html转js在线工具
html转js在线工具

html转js在线工具