thymeleafeach循环onclick参数取值使⽤[[]]传递参数
原代码中使⽤each遍历⾃定义的字典集合,在onclick参数中传递字典集合的值,代码中js获取不到onclick中参数值 :
<span th:each="dict:${@Type('dict_level')}" th:text="|${dict.dictLabel}|" th:value ="${dict.dictValue}" th:onclick="selectLevelSpan(this,${dict.dictValue
<script>
function selectLevelSpan(level,levelValue) {
alert(levelValue);
}
</script>
解决⽅法:
在下⾯⽂章的评论⾥到了解决⽅法,即onclick函数中的字典变量参数使⽤[[]]包裹:
thyme<span th:each="dict:${@Type('dict_level')}" th:text="|${dict.dictLabel}|" th:value ="${dict.dictValue}" th:onclick="selectLevelSpan(this,[[${dict.dictValu

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。