Jquery中的验证

 
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">   
  2. <html>   
  3.  <head>   
  4.   <title> New Document </title>   
  5.   <meta name="Generator" content="EditPlus">   
  6.   <meta name="Author" content="">   
  7.   <meta name="Keywords" content="">   
  8.   <meta name="Description" content="">   
  9.    <script src="http://code.jquery.com/jquery-latest.js"></script>   
  10.   <script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.8.1/jquery.validate.min.js" type="text/javascript"></script>   
  11.        
  12.  </head>   
  13.   
  14.  <body>   
  15.   
  16. <SCRIPT type="text/javascript">      
  17.   $(document).ready(function(){   
  18.   $("#signupForm").validate({   
  19.        rules: {   
  20.            uname: "required",   
  21.            email: {   
  22.            required: true,   
  23.            email: true  
  24.            },   
  25.            pwd: {   
  26.             required: true,   
  27.             minlength: 5  
  28.            },   
  29.            conpwd:{   
  30.             required: true,   
  31.             minlength: 5,   
  32.             equalTo: "#pwd"  
  33.            }   
  34.         },   
  35.        messages: {   
  36.            uname: "请输入姓名",   
  37.            email: {   
  38.             required: "请输入Email地址",   
  39.             email: "请输入正确的email地址"  
  40.            },   
  41.            pwd: {   
  42.             required: "请输入密码",   
  43.             minlength: jQuery.format("密码不能小于{0}个字符")   
  44.            },   
  45.            conpwd: {   
  46.             required: "请输入确认密码",   
  47.             minlength: "确认密码不能小于5个字符",   
  48.             equalTo: "两次输入密码不一致不一致"  
  49.            }   
  50.        }   
  51.     });    
  52. });   
  53.        
  54.   </SCRIPT>   
  55.   
  56.   
  57. <form id="signupForm" method="post" action="">   
  58. <p>   
  59. <label for="uname">   
  60. 用户名:   
  61. </label>   
  62. <input id="uname" type="text" name="uname"  />   
  63. </p>   
  64. <p>   
  65. <span style="width: 18px;"></span>   
  66. <label for="pwd">   
  67. 密码:   
  68. </label>   
  69. <input type="password" id="pwd" name="pwd" />   
  70. </p>   
  71. <p>   
  72. <label for="con-pwd">   
  73. 确认密码:   
  74. </label>   
  75. <input type="password" id="conpwd" name="conpwd" />   
  76. <span style="width: 20px"></span>   
  77. </p>   
  78. <p>   
  79. <span style="width: 20px"></span>   
  80. <label for="email">   
  81. 邮箱:   
  82. </label>   
  83. <input type="text" id="email" name="email" />   
  84. </p>   
  85. <p>   
  86. <input class="submit" type="submit" value="注册">   
  87. &nbsp;&nbsp;   
  88. <input type="reset" value="取消" />   
  89. </p>   
  90. </form>   
  91.  </body>   
  92. </html>  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值