thymeleaf onclick 方法里面怎样放参数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thymeleaf onclick 方法里面怎样放参数相关的知识,希望对你有一定的参考价值。
参考技术A Spring中Model的attributes属性 SpringMVC调用可以在视图模型的执行过程中访问的数据,在Thymeleaf中相当于上下文变量。thymeleaf 接受字符串类型model值作为js方法参数报错500
旧 th:onclick="‘javascript:view_attendee_record_list(‘+${meetingMsg.getMeetingRecordAttendeeState()}+‘)‘"
html5的data-*能够为标签添加一些自定义的属性和值,借此来实现。
改为 <a href="#" th:data-name="${meetingMsg.meetingId}" onclick="view_attendee_record_list(this.getAttribute(‘data-name‘))" >查看与会人员记录</a>
以上是关于thymeleaf onclick 方法里面怎样放参数的主要内容,如果未能解决你的问题,请参考以下文章
在 Thymeleaf 中使用 onClick 时如何将参数传递给 javascript 函数调用