輸入參數 checkBoxID 是 CheckBoxList 的 ClientID, TRUE_OR_FALSE 要全選輸入true 或取消 false:
function SetCheckBoxListChecked(checkBoxID,TRUE_OR_FALSE){
var table = document.getElementById(checkBoxID);
for(i=0;i<table.rows.length;i++){
table.rows[i].cells[0].childNodes[0].checked = TRUE_OR_FALSE;
}
}
轉自 http://felixhuang.pixnet.net/blog/post/21838073
沒有留言:
張貼留言