//타임리프
<button th:onclick="|update(${#authentication.principal.user.id},event)|">
|함수| 감싸줘야한다.
//js
function update(userId,event) {
alert(userId);
}
//타임리프
<button th:onclick="|update(${#authentication.principal.user.id},event)|">
|함수| 감싸줘야한다.
//js
function update(userId,event) {
alert(userId);
}