淘先锋技术网

首页 1 2 3 4 5 6 7

<input type="checkbox" name="checkbox_name[]” id=”checkbox_name_1″ />1<br />

<input type=”checkbox” name=”checkbox_name[]” id=”checkbox_name_2″ />2<br />

<input type=”checkbox” name=”checkbox_name[]” id=”checkbox_name_3″ />3<br />

<input type=”checkbox” name=”checkbox_name[]” id=”checkbox_name_4″ />4<br />

<input type=”checkbox” name=”checkedAll” id=”checkedAll”/>全选/取消全选

  1. <script type="text/javascript"><!--
  2. $(function() {
  3. $("#checkedAll").click(function() { 
  4. if ($(this).attr("checked") == true) { // 全选
  5.   $("input[@name='checkbox_name[]']").each(function() {
  6.   $(this).attr("checked", true);
  7.   });
  8. } else { // 取消全选
  9.   $("input[@name='checkbox_name[]']").each(function() {
  10.   $(this).attr("checked", false);
  11.   });
  12. }
  13. });
  14. });
  15. // --></script>

转载于:https://www.cnblogs.com/Mblog/archive/2010/03/05/1678990.html