function fnCheckAll() {
var checkField = document.listForm.checkField;
if(document.listForm.checkAll.checked) {
if(checkField) {
if(checkField.length > 1) {
for(var i=0; i < checkField.length; i++) {
checkField[i].checked = true;
}
} else {
checkField.checked = true;
}
}
} else {
if(checkField) {
if(checkField.length > 1) {
for(var j=0; j < checkField.length; j++) {
checkField[j].checked = false;
}
} else {
checkField.checked = false;
}
}
}
}
checkField = loop로 돌리는 checkbox item들의 name
checkAll = All select를 위해 선택하는 checkbox name
'# 웹 개발 > 프레임워크' 카테고리의 다른 글
jstl을 이용하여 jsp -> json 형식 출력 (마지막 콤마 제거) (0) | 2013.09.08 |
---|---|
jquery onload (0) | 2013.09.06 |
jsp 체크박스 선택하기 로직 (0) | 2013.09.04 |
게시판 파일 다운로드 시 image도 다운로드 가능하게 기능넣기 (0) | 2013.09.03 |
전자정부프레임워크 spring file download [톰캣이용한 방법] (0) | 2013.09.02 |