核心代码
代码如下 | 复制代码 |
$("#checkall").click(function(){ if(this.checked){ $("input[name='check']").each(function(){this.checked=true;}); }else{ $("input[name='check']").each(function(){this.checked=false;}); } }); |
例
代码如下 | 复制代码 |
<!DOCTYPE Html> <html> <head> <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.4.min.js"></script> <script type="text/javascript"> function selectAll(checkbox) { $('input[type=checkbox]').prop('checked', $(checkbox).prop('checked')); } </script> </head> <body> <input type="checkbox" onclick="selectAll(this);" />全选<br/> <input type="checkbox" /><br/> <input type="checkbox" /><br/> <input type="checkbox" /><br/> <input type="checkbox" /><br/> <input type="checkbox" /><br/> <input type="checkbox" /><br/> …… </body> </html> |
时间: 2024-11-05 04:49:10