Spring thymeleaf将th:text添加到data-def-val中

时间:2014-10-13 04:05:11

标签: spring spring-mvc thymeleaf

我能够解析th:text值,但是我需要在另一个html标记中添加该解析的值以用于jquery处理。

HTML代码

<div class="cal-tbl text-center pzero col-xs-3">
                                                        <br> <span>Calories</span></br>
                                                        <h4 id = "calories" data-def-val ="th:text=${food.calories}"> 309 </h4>
                                                    </div>

1 个答案:

答案 0 :(得分:0)

你可以使用

th:attr="data-def-val=${food.calories}"

这是使用动态数据填充非标准代码的通用方法