jQuery_review之jQuery实现多选框的反选、全选、全不选
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <script type="text/javascript" src="jquery-1.8.3.js"></script> <script type="text/javascript"> $(function(){ $("input[type='button'][name='selectAll']").click(function(){ $("input[type='checkbox'][name='fruit']").each(function(){ $(this).attr("checked",true); }); }); $("input[type='button'][name='disSelectAll']").click(function(){ $("input[type='checkbox'][name='fruit']").each(function(){ $(this).attr("checked",false); }); }); $("input[type='button'][name='reverseSelect']").click(function(){ $("input[type='checkbox'][name='fruit']").each(function(){ $(this).attr("checked",!$(this).attr("checked")); }); }); }); </script> </head> <body> <form action="#"> <input type="checkbox" name="fruit" value="apple">apple <input type="checkbox" name="fruit" value="orange">orange <input type="checkbox" name="fruit" value="watermelon">watermelon <input type="checkbox" name="fruit" value="strawberry">strawberry <input type="button" name="selectAll" value="SelectAll"> <input type="button" name="disSelectAll" value="disSelectAll"> <input type="button" name="reverseSelect" value="reverseSelect"> </form> </body> </html>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。