checkbox 체크 여부 확인하는 법

이재협·2022년 4월 5일
0

< input type="checkbox" > 의 체크 여부를 확인하고 싶다면 event.target.checked 사용

 const getCheckboxMethod = (e) => {
    if (e.target.checked) {
      setSelectMethod([...selectMethod, e.target.value]);
    } else {
      setSelectMethod(selectMethod.filter((el) => el !== e.target.value));
    }
  };

참고사이트

https://hianna.tistory.com/430

profile
코딩만을 잘하는 개발자가 아닌 문제를 해결하는 개발자가 되어보자

0개의 댓글

관련 채용 정보