<form method="get" action=""> <p> <label for="firstname">Firstname</label> <input /> </p> <p> <label for="email">E-Mail</label> <input /> </p> <p> <label for="password">Password</label> <input type="password" /> </p> <p> <label for="confirm_password">确认密码</label> <input type="password" /> </p> <p> <input type="submit" value="Submit"/> </p> </form>
required:true 必须有值。
required:"#aa:checked" 表达式的值为真,则需要验证。
required:function(){} 返回为真,表示需要验证。
后边两种常用于,表单中需要同时填或不填的元素。
以上就是本文的全部内容,全部介绍了jQuery Validate表单验证入门知识,之后还有一篇针对jQuery Validate表单验证的深入学习,希望大家继续关注。
您可能感兴趣的文章: