判斷單一 checkbox 是否被勾選
$(“#mycheckbox”).is(“:checked”)
多個 checkbox, 取得已勾選的 checkbox 數
$(“input[name=mycheckbox]:checked”).length
勾選所有 checkbox
$(“input[name=mycheckbox]”).each(function() {
this.checked=true;
});
多個 radio, 取得已勾選的 radio 值
$(“input[name=newsLang]:checked”).val()
勾選值為 1 的 radio
$(“input[name=myradio]”).filter(“[value=1]”).attr(‘checked’, true);