1、取值
<a th:text="${hello}"></a>
2、循环
<p th:each="str:${list}" th:text="${str}"></p>
3、是否显示
<p th:if="1==1">我是存在的</p>
4、选择
<input type="checkbox" th:checked="1==1">选择
5、传值
<a th:href="'javascript:a(\''+${hello}+'\')'" type="button">点击</a>
<script language="JavaScript">
function a(val) {
alert(val);
}
</script>
6、引用
<div th:include="indexInner.html::innerPart"></div>
<div th:fragment="innerPart">被引入页面的部分页面</div>