What
在thymeleaf的环境下,需要有一个onclick事件,是js并且带参数,而这个参数是带有thymeleaf特性的参数
Why
直接按照普通想法写参数系统是无法识别的,会报错
How
这是示例代码:
<input type="button" class="r r_save" value="保存"
th:onclick="'saveConfig(" ;'+${viewInstrument[12]}+'" ;)'"/>
其中," ;是“的意思,其实" ;中没有空格,但是如果有空格就自动识别为”
图片示例:
Hold on!
还有另外一种
th:onclick="'javascript:openBox(\''+${curCabNo}+'\',\''+${box.no}+'\')'"