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