thymeleaf页面使用th:onclick代替onclick
写法
1使用“|”: <a th:οnclick="|javascript:member_del(this,${month.allTrafficMonthId})|" href="javascript:;"></a>
2 使用引号:<a th:οnclick="‘javascript:member_del(this,'+${month.allTrafficMonthId}+')’" href="javascript:;"></a>
注意
传递参数时如果参数是数字这样写没有问题,但是如果参数是字符串onclick的方法将无法接收到参数并报错,所以参数是字符串时要加单引号。写法如下:
1. <a th:οnclick="|javascript:member_del(this,‘${month.allTrafficMonthId}’)|" href="javascript:;"></a>
2. <a th:οnclick="‘javascript:member_del(this,\''+${month.allTrafficMonthId}+'\')’" href="javascript:;"></a>