Posted in Javascript onJune 06, 2014
<!doctype html> <html> <head> <meta charset="utf-8"> <title>jquery test</title> <script src="jquery-1.11.1.min.js"></script> </head> <body> <input type="checkbox" name="check" value="one"/>one<br/> <input type="checkbox" name="check" value="two"/>two<br/> <input type="checkbox" name="check" value="three"/>three<br/> <input type="checkbox" name="check" value="four"/>four<br/> <input type="checkbox" name="check" value="five"/>five<br/> <input type="checkbox" name="check" value="six"/>six<br/> <input type="checkbox" name="check" value="seven"/>seven<br/> <button name="sub">提交</button> <script type="text/javascript"> $("button[name=sub]").click(function(){ var len = $("input:checkbox:checked").length; alert("你一共选中了"+len+"个复选框"); }) </script> </body> </html>
使用选择器得到所有被勾选的复选框元素的集合,然后通过判断元素的个数来得到用户勾选的个数。
有的时候,我们还对用户勾选复选框的个数做了限制,假设只能勾选三个,相应的代码是这样的:
<!doctype html> <html> <head> <meta charset="utf-8"> <title>jquery test</title> <script src="jquery-1.11.1.min.js"></script> </head> <body> <input type="checkbox" name="check" value="one"/>one<br/> <input type="checkbox" name="check" value="two"/>two<br/> <input type="checkbox" name="check" value="three"/>three<br/> <input type="checkbox" name="check" value="four"/>four<br/> <input type="checkbox" name="check" value="five"/>five<br/> <input type="checkbox" name="check" value="six"/>six<br/> <input type="checkbox" name="check" value="seven"/>seven<br/> <script type="text/javascript"> $("input:checkbox").click(function(){ var len = $("input:checkbox:checked").length; if(len>3){ alert('亲,最多只能选三个哟~'); return false; //另刚才勾选的取消 } }) </script> </body> </html>
jquery统计用户选中的复选框的个数
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@