記載一段最簡單的全選功能Jquery程式碼。 [code]$(function(){ $("#chkAll").click(function(){ $("input:checkbox").attr("checked", $(this).attr("checked")); });});[/code]