zoukankan      html  css  js  c++  java
  • jquery.validate.js使用指南

    1,一个待验证元素最好是一个id名称,一个name名称,只有id是不行的

    2,select 验证  requeired:true 表示验证元素的值不能选择空值

    3,从网上摘抄的验证radio checkbox等得代码

    <!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>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
    <title>Test for jQuery validate() plugin</title>
    
    <script src="scripts/jquery-1.4.1.js" type="text/javascript"></script>
    <script src="scripts/jquery.metadata.js" type="text/javascript"></script>
    <script src="scripts/jquery.validate.js" type="text/javascript"></script>
    
    <script src="scripts/cmxforms.js" type="text/javascript"></script>
    <script type="text/javascript">
    // only for demo purposes
    $.validator.setDefaults({
    	submitHandler: function() {
    		alert("submitted!");
    	}
    });
    	
    $.metadata.setType("attr", "validate");
    
    $(document).ready(function() {
    	$("#form1").validate();
    	$("#selecttest").validate();
    });
    </script>
    
    <style type="text/css">
    .block { display: block; }
    form.cmxform label.error { display: none; }	
    </style>
    
    </head>
    <body>
    
    <h1 id="banner"><a href="http://bassistance.de/jquery-plugins/jquery-plugin-validation/">jQuery Validation Plugin</a> Demo</h1>
    <div id="main">
    
    <form class="cmxform" id="form1" method="get" action="">
    	<fieldset>
    		<legend>Validating a form with a radio and checkbox buttons</legend>
    		<fieldset>
    			<legend>Gender</legend>
    			<label for="gender_male">
    				<input  type="radio" id="gender_male" value="m" name="gender" validate="required:true" />
    				Male
    			</label>
    			<label for="gender_female">
    				<input  type="radio" id="gender_female" value="f" name="gender"/>
    				Female
    			</label>
    			<label for="gender" class="error">Please select your gender</label>
    		</fieldset>
    		<fieldset>
    			<legend>Family</legend>
    			<label for="family_single">
    				<input  type="radio" id="family_single" value="s" name="family" validate="required:true" />
    				Single
    			</label>
    			<label for="family_married">
    				<input  type="radio" id="family_married" value="m" name="family" />
    				Married
    			</label>
    			<label for="family_divorced">
    				<input  type="radio" id="family_divorced" value="d" name="family" />
    				Divorced
    			</label>
    			<label for="family_weird">
    				<input  type="radio" id="family_weird" value="w" name="family" />
    				Something weird
    			</label>
    			<label for="family" class="error">Please select your family status.</label>
    		</fieldset>
    		<p>
    			<label for="agree">Please agree to our policy</label>
    			<input type="checkbox" id="agree" name="agree" validate="required:true" />
    			<br/>
    			<label for="agree" class="error block">Please agree to our policy!</label>
    		</p>
    		<fieldset>
    			<legend>Spam</legend>
    			<label for="spam_email">
    				<input type="checkbox" id="spam_email" value="email" name="spam[]" validate="required:true, minlength:2" />
    				Spam via E-Mail
    			</label>
    			<label for="spam_phone">
    				<input type="checkbox" id="spam_phone" value="phone" name="spam[]" />
    				Spam via Phone
    			</label>
    			<label for="spam_mail">
    				<input type="checkbox" id="spam_mail" value="mail" name="spam[]" />
    				Spam via Mail
    			</label>
    			<label for="spam[]" class="error">Please select at least two types of spam.</label>
    		</fieldset>
    		<p>
    			<input class="submit" type="submit" value="Submit"/>
    		</p>
    	</fieldset>
    </form>
    
    <form id="selecttest">
    	<h2>Some tests with selects</h2>
    	<p>
    		<label for="jungle">Please select a jungle noun</label><br/>
    		<select id="jungle" name="jungle" title="Please select something!" validate="required:true">
    			<option value=""></option>
    			<option value="1">Buga</option>
    			<option value="2">Baga</option>
    			<option value="3">Oi</option>
    		</select>
    	</p>
    	
    	<p>
    		<label for="fruit">Please select at least two fruits</label><br/>
    		<select id="fruit" name="fruit" title="Please select at least two fruits" validate="required:true, minlength:2" multiple="multiple">
    			<option value="b">Banana</option>
    			<option value="a">Apple</option>
    			<option value="p">Peach</option>
    			<option value="t">Turtle</option>
    		</select>
    	</p>
    	
    	<p>
    		<label for="vegetables">Please select no more than two vergetables</label><br/>
    		<select id="vegetables" name="vegetables" title="Please select no more than two vergetables" validate="required:true, maxlength:2" multiple="multiple">
    			<option value="p">Potato</option>
    			<option value="t">Tomato</option>
    			<option value="s">Salad</option>
    		</select>
    	</p>
    	
    	<p>
    		<label for="cars">Please select at least two cars, but no more than three</label><br/>
    		<select id="cars" name="cars" title="Please select at least two cars, but no more than three" validate="required:true, rangelength:[2,3]" multiple="multiple">
    			<option value="m_sl">Mercedes SL</option>
    			<option value="o_c">Opel Corsa</option>
    			<option value="vw_p">VW Polo</option>
    			<option value="t_s">Titanic Skoda</option>
    		</select>
    	</p>
    	
    	<p><input type="submit" value="Validate Selecttests"/></p>
    </form>
    
    <a href="index.html">Back to main page</a>
    
    </div>
    
    <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
    </script>
    <script type="text/javascript">
    _uacct = "UA-2623402-1";
    urchinTracker();
    </script>
    </body>
    </html>
    

       

  • 相关阅读:
    比特币学习笔记(五)---继续解读入口部分源码
    比特币学习笔记(四)---解读入口部分源码
    比特币学习笔记(三)---配置文件和启动
    比特币学习笔记(二)---在windows下调试比特币源码
    比特币学习笔记(一)---在windows下编译搭建比特币环境
    让我们把KBEngine玩坏吧!如何定制我们自己的C++函数(一)
    KBEngine warring项目源码阅读(三) 实体文件与Account处理
    KBEngine warring项目源码阅读(二) 登录和baseapp的负载均衡
    KBEngine warring项目源码阅读(一) 项目简介和注册
    JMeter测试TCP服务器遇到的一个奇怪问题
  • 原文地址:https://www.cnblogs.com/laogao/p/2408384.html
Copyright © 2011-2022 走看看