5-2 Thymeleaf常用th标签

关键字 功能介绍 案例
th:id 替换id
th:text 文本替换

description

th:utext 支持html的文本替换

content

th:object 替换对象
th:value 属性赋值
th:with 变量赋值运算
th:style 设置样式
th:onclick 点击事件
th:each 属性赋值
th:if 判断条件
th:unless 和th:if判断相反 Login
th:href 链接地址 Login
th:switch 多路选择配合th:case使用
th:fragment th:switch的一个分支

User is an administrator

th:includ 布局标签,替换内容到引入的文件
th:replace 布局标签,替换整个标签到引入的文件
th:selectd selected选择框选中 th:selected="(${xxx.id} == ${configObj.dd})"
th:src 图片类地址引入 App Logo
th:inline 定义js脚本可以使用变量

你可能感兴趣的:(5-2 Thymeleaf常用th标签)