jQuery Validation PlugIn的使用方法详解(3)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>jQuery PlugIn - 表单验证插件实例 Validate </title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <script type="text/javascript" src="https://www.jb51.net/jquery.js"></script> <script type="text/javascript" src="https://www.jb51.net/jquery.validate.min.js"></script> <script type="text/javascript" src="https://www.jb51.net/messages_cn.js"></script> <style type="text/css"> * { font-family: Verdana; font-size:13px; } input[type='text']{width:200px;} textarea{width:155px;} label { width: 10em; float: left; } label.error { float: none; color: red; padding-left: .5em; vertical-align: top; } </style> <script> $(document).ready(function(){ $("#commentForm").validate(); }); </script> </head> <body> <form method="get" action="" > <fieldset> <legend>表单验证</legend> <p><label>Name</label><input maxlength="4" minlength="2" /></p> <p><label >E-Mail</label><input /></p> <p><label >URL</label><input/></p> <p><label>text</label><textarea cols="22"></textarea></p> <p><input type="submit" value="提交"/></p> </fieldset> </form> </body> </html>

实例二:方法验证,通过自定义表单规则来验证表单

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>jQuery PlugIn - 表单验证插件实例 Validate </title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <script type="text/javascript" src="https://www.jb51.net/jquery.js"></script> <script type="text/javascript" src="https://www.jb51.net/jquery.validate.min.js"></script> <script type="text/javascript" src="https://www.jb51.net/messages_cn.js"></script> <style type="text/css"> * { font-family: Verdana; font-size:13px; } input[type='text']{width:200px;} textarea{width:155px;} .title{float:left;width:10em} em.error { float: none; color: red; padding-left: .5em; vertical-align: top; } .field_notice{display:none;} .checking{display:none;} </style> <script> $(document).ready(function(){ $("#commentForm").validate({ errorPlacement: function(error, element){ var error_td = element.next('em'); error_td.find('.field_notice').hide(); error_td.append(error); }, success: function(label){ label.addClass('validate_right').text('OK!'); }, onkeyup: false, rules: { name: { required:true, minlength:3, maxlength:40, remote:{ url :'index.php?ajax=1', type:'get', data:{ name : function(){ return $('#name').val(); } }, beforeSend:function(){ var _checking = $('#checking'); _checking.prev('.field_notice').hide(); _checking.next('label').hide(); $(_checking).show(); }, complete :function(){ $('#checking').hide(); } } }, email: {required: true, email: true }, url:{required:true,url:true}, text:"required" }, messages: { name: {required:"需要输入名称", minlength:"名称长度在3-40个字符之间", maxlength:"名称长度在3-40个字符之间",remote:"用户名已存在"}, email: {required:"需要输入电子邮箱", email:"电子邮箱格式不正确"}, url: {required:"需要输入URL地址", url:"URL地址格式不正确"}, text:"需要输入文本内容" }, }); }); </script> </head> <body> <form method="get" action="" > <fieldset> <legend>表单验证</legend> <p><label >Name</label><input/> <em><label></label><label>检查中...</label></em> </p> <p><label >E-Mail</label><input/> <em><label></label></em> </p> <p><label >URL</label><input/> <em><label></label></em> </p> <p><label >text</label><textarea cols="22"></textarea> <em><label></label></em> </p> <p><input type="submit" value="提交"/></p> </fieldset> </form> </body> </html>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgwpzg.html