😶🌫️ 문제점
<button type="button" onclick=openModal('${comment.id}', '${comment.user_name}', '${comment.comment}' ) class="bi bi-pencil"></button>
이렇게 하면 모달창은 뜨지만 '${comment.id}' 형태로 값이 그대로 들어간다.
✨ 해결
<button type="button" th:attr="onclick=|openModal('${comment.id}', '${comment.user_name}', '${comment.comment}' )|" class="bi bi-pencil"></button>
th:attr을 사용했다.
참고 👇
https://jjeong.tistory.com/1466
반응형
'FE > html' 카테고리의 다른 글
수정 버튼 클릭시 알림창을 띄우고 요청 보내기 (0) | 2022.06.09 |
---|---|
[Bootstrap] class="invalid-feedback"이 작동하지 않을 때 (0) | 2022.06.06 |
[Bootstrap] 부트스트랩의 아이콘 사용하기 (0) | 2022.06.02 |
[Error] 부트스트랩 dropdown이 안 될 때 (0) | 2022.04.01 |
[Thymeleaf] 글 작성자에게만 수정, 삭제 버튼 보이기 (0) | 2022.03.29 |