<h2 th:data-title ="${dep.depId}"
th:onclick="'doThing('+${}+','+${1}+',this)'"
th:text="${}+'('+${dep.status}+')'">
</h2>
window.getCommonGoal = function (id, num, e) {
var title = $(e).attr("data-title");
//其他业务

}

 

说明:

1.dep是后台传到前端的实体对象

:data-title自定义的属性

3.点击事件可以传递可变的实体属性、固定值、this对象