是否可以在th:text?
中包含Html标签例如:
<h2 th:text="'LOCATION INFO Device <strong>' + ${deviceKey} + ' </strong> at ' + ${deviceEventTime} ">
答案 0 :(得分:1)
是的,如果您使用th:utext
代替th:text
,则可以使用的内容。
<h2 th:utext="'LOCATION INFO Device <strong>' + ${deviceKey} + ' </strong> at ' + ${deviceEventTime}" />
我个人会这样格式化,但是:
<h2>
LOCATION INFO Device
<strong th:text="${deviceKey}" />
at
<span th:text="${deviceEventTime}">
</h2>
(根据您的实际要求,可能会或可能不会。)