카테고리 없음

타임리프 th:onclik 함수실행

o_b:us 2022. 3. 9. 18:23
//타임리프
<button th:onclick="|update(${#authentication.principal.user.id},event)|">

|함수| 감싸줘야한다.

//js
function update(userId,event) {
    alert(userId);
}