代碼: 選擇全部
$("#clickAll").click(function() {
if($("#clickAll").prop("checked"))
{
$("input[name*='web_show']").each(function() {
$(this).prop("checked", true);
});
}
else
{
$("input[name*='web_show']").each(function() {
$(this).prop("checked", false);
});
}
});
<input type="checkbox" id="clickAll" name="clickAll">全選</input>