본문 바로가기
개발/웹

jquery checkbox 정리

by 로그인시러 2016. 8. 16.
		// 체크 박스 모두 체크
		$("#checkAll").click(function() {
			$("input[name=box]:checkbox").each(function() {
				$(this).attr("checked", true);
			});
		});

		// 체크 박스 모두 해제
		$("#uncheckAll").click(function() {
			$("input[name=box]:checkbox").each(function() {
				$(this).attr("checked", false);
			});
		});

		// 체크 되어 있는 값 추출
		$("#getCheckedAll").click(function() {
			$("input[name=box]:checked").each(function() {
				var test = $(this).val();
				console.log(test);
			});
		});

		// 서버에서 받아온 데이터 체크하기 (콤마로 받아온 경우)
		$("#updateChecked").click(function() {
			var splitCode = $("#splitCode").val().split(",");
			for (var idx in splitCode) {
				$("input[name=box][value=" + splitCode[idx] + "]").attr("checked", true);
			}
		});


출처 : http://lng1982.tistory.com/80

'개발 > ' 카테고리의 다른 글

MYBATIS 변수형이 모호할 때 발생하는 에러 처리  (0) 2016.11.04
mybatis # 과 $ 의 차이  (0) 2016.10.26
IIFE 와 javascript 모듈  (0) 2016.08.18
eclipse javascript 멈춤  (0) 2016.08.18
amchart listener 등록  (0) 2016.08.18

댓글