jquery表单验证插件validation使用方法详解
更新时间:2017年01月20日 09:58:43 作者:BaldWinf
这篇文章主要为大家详细介绍了jquery表单验证插件validation使用方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
一、如何使用
引入js文件
<script src="jquery.js"></script> <script src="jquery.validate-1.13.1.js"></script>
编写html页面,这里仅以用户名、密码为例
<body> <form id="demoForm"> <fieldset> <legend>用户登录</legend> <p> <label for="username">用户名</label> <input type="text" id="username" name="username"> </p> <p> <label for="password">密码</label> <input type="text" id="password" name="password"> </p> </fieldset> </form> </body>
编写script脚
$(document).ready(function(){ $("#demoForm").validate({ rules:{ username:{ required:true,// 是否必填 minlength:2, // 最小长度 maxlength:10 // 最大长度 }, password:{ required:true, minlength:2, maxlength:16 } } }); });
二、测试
如果大家还想深入学习,可以点击两个精彩的专题:jquery表单验证大全 JavaScript表单验证大全
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
锋利的jQuery 要点归纳(二) jQuery中的DOM操作(下)
锋利的jQuery 要点归纳(二) jQuery中的DOM操作(下)2010-03-03jquery获取input type=text中的值的各种方式(总结)
下面小编就为大家带来一篇jquery获取input type=text中的值的各种方式(总结)。小编觉的挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2016-12-12
最新评论