博主
258
258
258
258
专辑

第七节 Thymeleaf模版指令:注释

亮子 2022-02-16 00:31:39 5843 0 0 0

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>