分類彙整: Jquery

Jquery 小程式

判斷 checkbox 是否選取,實現全選跟全部取消
在 jQuery 底下要如何實現這個功能,其實還蠻簡單的,首先看 html 部份
1
2
3
4
5
全選
jQuery 部份如下:
$(“#clickAll”).click(function() {
if($(“#clickAll”).prop(“checked”)) {
$(“input[name=’user_active_col[]’]”).each(function() {
$(this).prop(“checked”, true);
});
} else {
$(“input[name=’user_active_col[]’]”).each(function() {
$(this).prop(“checked”, false);
});
}
});
可以不用 loop 方式,直接用一行解取代上面程式碼
$(“input[name=’user_active_col[]’]”).prop(“checked”, true);
//————————————————————–
 
 
$(“#week”+data[i].week).attr(“checked”,true);
$(“#week”+data[i].week).checkboxradio(‘refresh’);
單一選項設定是否選取