摘要:[memo] checkbox 全選
寫 WEB 常用到,但老是記不住,只好特地筆記起來。
$("#allCbx").click(function () {
var thisCheck = $(this);
if (thisCheck.is(":checked")) {
$(".grpCbx").attr("checked", true);
} else {
$(".grpCbx").attr("checked", false);
}
});