html結構:html
html<ul> <li><input name="user_active_col[]" type="checkbox" value="1"> 1</li> <li><input name="user_active_col[]" type="checkbox" value="2"> 2</li> <li><input name="user_active_col[]" type="checkbox" value="3"> 3</li> <li><input name="user_active_col[]" type="checkbox" value="4"> 4</li> <li><input name="user_active_col[]" type="checkbox" value="5"> 5</li> </ul> <div><input name="clickAll" id="clickAll" type="checkbox"> 全選</div>
jQuery代碼:this
jQuery$(function() { $("#clickAll").click(function() { if ($("#clickAll").prop("checked")) { $("input[name='user_active_col[]']").each(function() { $(this).prop("checked", true); }); } else { $("input[name='user_active_col[]']").each(function() { $(this).prop("checked", false); }); } }); });
demo.net
注意:jQuery 1.6之後用prop代替attr。code