JiYoung Dev 🖥

[Thymeleaf] th:onclick과 location.href 함께 사용하기 본문

Question

[Thymeleaf] th:onclick과 location.href 함께 사용하기

Shinjio 2023. 8. 8. 16:05

href에 주소와 함께 변수를 넣고 싶을 때

 

<button class="btn btn-danger" th:onclick="'location.href=\'/admin/' + @{${session.loginUser.getNick()}} + '\''" >마이페이지</button>

 

변수 사용할 때

@{${      }}

 

th:onclick="'location.href=\''+ @{${moveUrl}} + '\''"

 

주소 사용할 때

@{     }

 

<button th:onclick="'location.href=\''+ @{/oauth2/authorization/google} + '\''">