도영스 공간
xxx 타입스크립트(Element형식에 checked 속성이 없습니다. ) 본문
반응형
ㅎㅎ
Element형식에 checked 속성이 없습니다. ^^ ;
js파일을 tsx파일로 변환한 후 겪은 에러 메세지이다.
해결법은 간단했다.
허나 나능 잘 모르기에 ㅠㅠ당황했당..
이전 코드
if (count === 3) {
return (document.querySelector(
".agree_check_wrap input[name='agree_all']",
).checked = true);
}
해결한 코드
const agreeAll = document.querySelector(
".agree_check_wrap input[name='agree_all']",
) as HTMLInputElement | null;
if (count === 3) {
return (agreeAll.checked = true);
}
그냥 타입을 지정해주니까 에러 메세지가 사라졌다 !!!!
타입스크립트야 ..친해지자..ㅎ
728x90
반응형
'TIL > 2022 TIL' 카테고리의 다른 글
Warning: Each child in a list should have a unique "key" prop (1) | 2022.08.22 |
---|---|
리액트 모달창 세로 스크롤 막기 (1) | 2022.07.30 |
스택과 큐 (1) | 2022.07.25 |
REST API(Representational State Transfer) (1) | 2022.07.21 |
Next.js환경에서 카카오 맵 api 불러오기 (0) | 2022.07.20 |
Comments