백엔드/Spring
thymeleaf onclick href
작은소행성☄️
2021. 5. 17. 09:45
728x90
thymeleaf 에서 컨트롤러에서 넘겨받은 URL 변수로
특정 태그에 onclick을 이용해 페이지 이동을 하고싶을때 (location.href 사용)
아래와 같이 사용하면 된다
<button type="button" id="btn" class="btn" th:onclick="'window.location.href=\''+@{/infolist}+'\''" >목록으로</button>
th:onclick="'window.location.href=\''+@{/list}+'\''"
th:onclick="'window.location.href=\''+@{/list}+'\''"
th:onclick="'window.location.href=\'/update?no=' + ${key} + '\''"
- Variable Expressions: ${...}
- Link URL Expressions: @{...}
728x90
반응형