Thymeleaf常用th标签
Thymeleaf常用th标签关键字功能介绍案例th:id替换id<input th:id="'xxx' + ${collect.id}"/>th:text文本替换,包括html标签若home.welcome=Welcome to our <b>fantastic</b> grocery ...
关键字 | 功能介绍 | 案例 |
---|---|---|
th:id | 替换id | <input th:id="'xxx' + ${collect.id}"/> |
th:text | 文本替换,包括html标签 | |
th:utext | 文本替换,html标签会显示出正确的样式 | <p th:utext="#{home.welcome}"></p>即可。 Welcome to our fantastic grocery store! 等效于html :<p>Welcome to our <b>fantastic</b> grocery store!</p> |
th:object | 替换对象 | 用于表单数据对象绑定,将表单绑定到后台controller的一个JavaBean参数。常与th:field一起使用进行表单数据绑定。 <form id="login-form" th:action="@{/login}" th:object="${loginBean}">...</form>
|
th:value | 属性赋值 | <input th:value = "${user.name}" /> |
th:with | 定义局部变量。 | 当th:with被处理,firstPer变量创建一个局部变量和变量添加到map自上下文, 如果定义多个局部变量 <div th:with="firstPer=${persons[0]},secondPer=${persons[1]}"> |
th:style | 设置样式 | <div th:style="'display:' + @{(${sitrue} ? 'none' : 'inline-block')} + ''"></div> |
th:onclick | 点击事件 | <td th:onclick = "'getCollect()'"></td> |
th:each | 属性赋值 | <tr th:each = "user,userStat:${users}"> |
th:if | 判断条件 | <a th:if = "${userId}"> 如果userId不为空就执行a标签 |
th:unless | 和th:if判断相反 | <a th:href="@{/login} th:unless=${session.user != null}">Login</a> |
th:href | 链接地址 | <a th:href="@{/login}" th:unless=${session.user != null}>Login</a> |
th:switch | 多路选择配合th:case使用 |
|
th:fragment | 自定义片段 | 定义fragment <footer th:fragment="copy"> th:insert:保留自己的主标签,保留th:fragment的主标签。 导入片段: th:replace=”thymeleaf的根目录+片段的html名+ :: +自定义的片段名” |
th:include | 布局标签,替换内容到引入的文件 | |
th:replace | ||
th:selectd | selected选择框选中 | th:selected="(${xxx.id} == ${configObj.dd})" |
th:src | 图片类地址引入 | <img class="img-responsive" alt="App Logo" th:src="@{/img/logo.png}" /> |
th:inline | 定义js脚本可以使用变量 | <script type="text/javascript" th:inline="javascript"> |
th:action | 表单提交的地址 | <form action="subscribe.html" th:action="@{/subscribe}"> |
th:remove | 删除某个属性 | <tr th:remove="all"> 1.all:删除包含标签和所有的孩子。 2.body:不包含标记删除,但删除其所有的孩子。 3.tag:包含标记的删除,但不删除它的孩子。 4.all-but-first:删除所有包含标签的孩子,除了第一个。 5.none:什么也不做。这个值是有用的动态评估。 |
th:attr | 设置标签属性,多个属性可以用逗号分隔 | 比如 th:attr="src=@{/image/aa.jpg},title=#{logo}",此标签不太优雅,一般用的比较少。 |
更多推荐
所有评论(0)