jQuery Validate checkbox和radio驗證
下面通過程式碼例項介紹一下如何實現對於核取方塊和單選按鈕的一些驗證。
如果要求核取方塊和單選按鈕是必選項,同樣也是使用required。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> ul li { list-style:none; } span.error { font-size:12px; color:red; } </style> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script src="http://www.softwhy.com/demo/jQuery/js/jquery.validate.js"></script> <script src="http://www.softwhy.com/demo/jQuery/js/messages_zh.js"></script> <script> $(document).ready(function () { $("#myform").validate({ errorClass: "error", errorElement: "span", errorPlacement: function (error, element) { error.appendTo(element.parent()); }, }); }); </script> </head> <body> <div id="ant"> <ul></ul> </div> <form id="myform"> <ul> <li>興趣: <input type="checkbox" value="1" name="xingqu" required/>讀書 <input type="checkbox" value="2" name="xingqu" />踢球 <input type="checkbox" value="3" name="xingqu" />象棋 <input type="checkbox" value="4" name="xingqu" />前端 </li> <li>性別: <input type="radio" value="1" name="sex" required/>男 <input type="radio" value="2" name="sex"/>女 </li> <li> <input type="submit" value="提交"/> <input type="reset" value="重置"/> </li> </ul> </form> </body> </html>
上面的程式碼實現核取方塊和單選按鈕必選按鈕效果。
特別說明:規則只需要在第一個核取方塊或者單選按鈕上規定即可。
當然我們也可以將規則寫在js程式碼中,程式碼片段如下:
[JavaScript] 純文字檢視 複製程式碼rules: { xingqu: "required", sex: "required" }
更多內容可以參閱jQuery Validate驗證規則的使用一章節。
還有一種常見的需求就是限定核取方塊的選中數目,可以參閱jQuery Validate限定核取方塊選中的數目一章節。
相關文章
- jQuery的radio,checkbox,select操作jQuery
- jquery.validate 表單驗證jQuery
- jQuery Validate驗證除錯開關jQuery除錯
- jQuery Validate驗證規則實質jQuery
- jQuery Validate驗證觸發的方式jQuery
- jQuery Validate驗證規則的使用jQuery
- jQuery Validate驗證規則使用演示jQuery
- jQuery Validate忽略指定元素不驗證jQuery
- jQuery Validate非同步ajax方式驗證jQuery非同步
- jQuery Validate驗證上傳檔案大小jQuery
- jQuery Validate新增自定義驗證規則jQuery
- jQuery Validate對select下拉選單驗證jQuery
- jQuery Validate驗證確認密碼是否相同jQuery密碼
- jQuery Validate表單驗證基本流程介紹jQuery
- jQuery Validate自定義驗證錯誤資訊jQuery
- jQuery Validate獲取驗證錯誤的數目jQuery
- jQuery Validate自定義表單元素驗證通過和不通過的樣式jQuery
- checkbox與radio美化效果
- form表單元素測試(checkbox和radio)ORM
- checkbox/radio自定義樣式
- jQuery Validate表單驗證(使用者註冊簡單應用)jQuery
- Validator | validate 驗證規則
- jQuery Validate highlight()jQuery
- jQuery Validate addMethod()jQuery
- jQuery Validate errorPlacement()jQueryError
- jQuery Validate success()jQuery
- jQuery Validate unhighlight()jQuery
- validate表單驗證外掛
- jQuery Validate optional()方法jQuery
- mongoose使用validate驗證, 獲取自定義驗證資訊Go
- jQuery Validate全域性配置和例項配置jQuery
- Jquery Validate自定義驗證規則,一個漢字等於兩個字元長度jQuery字元
- Thinkphp5基礎——11 validate驗證PHP
- 讓你的 validate 支援場景驗證
- jQuery Validate的format()用法jQueryORM
- Css實現checkbox及radio樣式自定義CSS
- 如何修改美化radio、checkbox的預設樣式?
- 基於 Bootstrap 和 jQuery 的 checkbox 的應用bootjQuery