Thymeleaf模板:图像路径到HTML5属性

时间:2015-10-22 23:13:36

标签: html thymeleaf

我正在尝试将图像的路径插入到HTML 5属性中。我已经测试了这样的情况:

<option value="en" th:data-imagesrc="@{/images/en.png}">
  English
</option>

<option value="en" data-imagesrc="@{/images/en.png}">
  English
</option>

但两种情况都失败了。 设置HTML 5属性的正确方法是什么:src或th:href?

1 个答案:

答案 0 :(得分:0)

使用th:attr

在你的情况下

<option value="en" th:attr="data-imagesrc='__@{/images/en.png}__'">
  English
</option>

或者有为html5数据attrs创建的第三方库

https://github.com/mxab/thymeleaf-extras-data-attribute