略
th:with
用于定义局部变量。其作用范围在其所在标签或者子标签中有效。
th:with
定义的局部变量在其所在标签中使用Hello , <span th:width="name='jack'" th:text="${name}" class="na"></span> :
th:with
定义的局部变量在子标签中使用<ul th:with="liSize=5"> <li th:each="index : ${#numbers.sequence(1, liSize)}" > [(${index})]. some thing </li> </ul>