미리보기 사진 태그를 지울 onclick 이벤트의 함수 removeImg()는 img태그의 class이름을 매개변수로 받아와서
게시글 수정일 때의 미리보기인지 게시글 업로드 할 때의 미리보기인지 확인하려고 class 이름을 매개변수를 받은건데
그냥 imgPreview로 썼을 때 Uncaught SyntaxError: Unexpected end of input 오류가 발생했다.
수정 전 before
const imgClassName = "imgPreview";
html += `<button type="button" class="close-btn" aria-label="Close" onclick="removeImg(imgPreview)" />`
수정 후 after
const imgClassName = "imgPreview";
html += `<button type="button" class="close-btn" aria-label="Close" onclick="removeImg('` + imgPreview + `')" />`
'개발기록' 카테고리의 다른 글
job-hunter 회고 #1 개발 초기 (0) | 2024.01.15 |
---|---|
jQuery 를 이용한 태그 추가, 삭제 (0) | 2021.01.25 |
NodeJS(Express사용)에서 multer files upload 이미지 여러개 올리기 (+미리보기 포함) (0) | 2021.01.15 |
VSCode에서 solidity version 빨간 밑줄일 때 (0) | 2020.10.31 |
truffle 오류 cannot find module 'connect-private-to-provider' 해결하기 (0) | 2020.10.29 |