본문 바로가기
오류 처리/타임리프

input/button onclick()시 ()안에 파라미터값을 넘길때

by dal_been 2023. 4. 27.
728x90
 <input type="button" class="login-input" id="btn1" value="아이디 사용하기" th:thisId="${id}" th:onclick="apply(this.getAttribute('thisId'))" >

타임리프를 사용하면서 apply()에 변수?에 ${id}를 넘겨줬는데 계속 에러가 뜬다...

그냥 리터럴 값을 느면 괜찮은데... 왜 그런걸까??

 

(에러 내용)

uncaught syntaxerror missing ) after argument list

 

그래서 검색해보니!!! 위에 코드처럼

this:parameterName="${(변수)}" 를 넣으면 된다

 

 

https://wangtak.tistory.com/27