๊ด€๋ฆฌ ๋ฉ”๋‰ด

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} + '\''">

 

๋ฐ˜์‘ํ˜•