0
是否有可能在th:文本中包含Html標籤?Thymeleaf:thtml中的Html標籤:文本
例如:
<h2 th:text="'LOCATION INFO Device <strong>' + ${deviceKey} + ' </strong> at ' + ${deviceEventTime} ">
是否有可能在th:文本中包含Html標籤?Thymeleaf:thtml中的Html標籤:文本
例如:
<h2 th:text="'LOCATION INFO Device <strong>' + ${deviceKey} + ' </strong> at ' + ${deviceEventTime} ">
是的,你有什麼作品,如果你使用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>
(可能會或可能是不可能的,這取決於你的實際需求。)