thymeleaf的 th:onclick点击事件无效
无效的写法
<button class="btn-primary btn btn-xs" th:onclick="|preview(${u.userId})|">查看</button>
有效的写法
<button class="btn-primary btn btn-xs" th:onclick="preview([[${u.userId}]])">查看</button>
THYMELEAF 3.0.10更改日志
*改进了HTML事件处理程序属性(th:on ),以允许将其值作为内联JavaScript的片段(使用JAVASCRIPT模板模式)进行处理。
但是在Thymeleaf 3.0中,输出表达式将始终在标记主体中可用,而无需启用显式内联:
< p>这个产品叫做[[$ {product.name}]],太好了!</ p >