1.在html里是代码,在解析时是注释
注:常用在保持静态html代码的完整性上
举例:
<table>
<tr th:each="x : ${xs}">
...
</tr>
<!--/*-->
<tr>
...
</tr>
<tr>
...
</tr>
<!--*/-->
</table>
2.在html里是注释,在解析时是代码
举例:
<span>hello!</span>
<!--/*/
<div th:text="${...}">
...
</div>
/*/-->
<span>goodbye!</span>