checkbox 체크 여부 확인하는 법

< 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

좋은 웹페이지 즐겨찾기