본문 바로가기
JS

[Jquery] input[type="checkbox"]의 체크 여부

by 하겐모아 2023. 10. 26.

input[type="checkbox"]의 체크 여부를 3가지 형태로 확인 할 수 있다.

 

1. :checked 선택자 사용

See the Pen Untitled by 조민혁 (@iqgzrljw-the-typescripter) on CodePen.

 

 

 

2. prop() 매서드 사용

See the Pen Untitled by 조민혁 (@iqgzrljw-the-typescripter) on CodePen.

 

 

 

3. 체크 박스 전체동의

See the Pen Untitled by 조민혁 (@iqgzrljw-the-typescripter) on CodePen.

 

+)  prop()는 프로퍼티 값을 반환하므로 더 정확한 체크 상태를 확인 할 수 있다.

 

'JS' 카테고리의 다른 글

카카오톡 공유하기 기능 삽입하기  (0) 2024.01.10
[Swiper.js] 마크업 및 속성  (1) 2023.10.28
[Jquery] attr()과 prop()의 차이  (0) 2023.09.13
[JavaScript] fetch()  (0) 2023.08.01
[JavaScript] Promise  (0) 2023.08.01