JQ至少选择一个复选框代码
所属栏目: 网站开发 | 更新时间:2016-7-8 | 阅读:3278 次
<html> <head> <title></title> <script type="text/javascript" src="js/jquery-1.4.2.min.js"></script> <script type="text/javascript"> $(function(){ $('#submit').click(function(){ if($(":checkbox[checked = true]").size()<1){ alert("最少选择一个复选框!"); return false; } alert('OK') }); }) </script> </head> <body> <input type="checkbox" > <input type="checkbox" > <input type="checkbox" > <input type="checkbox" > <input type="checkbox" > <input type="checkbox" > <input type="checkbox" > <input type="checkbox" > <input type="checkbox" > <input type="checkbox" > <input type="button" id="submit" value=" 提 交 "> </body> </html>