Thymeleaf th:action

简介: th:attr 任何属性值            多个属性一起设置,用逗号隔开设置指定属性复制代码th:abbr th:accept th:accept-charsetth:accesskey th:action th:alignth:alt th:archive ...
th:attr 任何属性值

<form action="subscribe.html" th:attr="action=@{/subscribe}">
  <fieldset>
    <input type="text" name="email" />
    <input type="submit" value="Subscribe me!" th:attr="value=#{subscribe.submit}"/>
  </fieldset>
</form>
多个属性一起设置,用逗号隔开

<img src="../../images/gtvglogo.png" th:attr="src=@{/images/gtvglogo.png},title=#{logo},alt=#{logo}" />
设置指定属性

复制代码
th:abbr th:accept th:accept-charset
th:accesskey th:action th:align
th:alt th:archive th:audio
th:autocomplete th:axis th:background
th:bgcolor th:border th:cellpadding
th:cellspacing th:challenge th:charset
th:cite th:class th:classid ...
复制代码
<input type="submit" value="Subscribe me!" th:value="#{subscribe.submit}"/>
<form action="subscribe.html" th:action="@{/subscribe}">
<li><a href="product/list.html" th:href="@{/product/list}">Product List</a></li>

 

相关文章
|
开发框架 Java .NET
Sitemesh3使用及配置
Sitemesh3使用及配置
【Thymeleaf】thymeleaf中给input的value属性设置值
【Thymeleaf】thymeleaf中给input的value属性设置值
537 0
|
Java
Struts2【开发Action】(三)
Struts2【开发Action】
159 0
Struts2【开发Action】(三)
|
Java API 容器
Struts2【开发Action】(二)
Struts2【开发Action】
174 0
Struts2【开发Action】(二)
|
Java
Struts2【开发Action】(一)
Struts2【开发Action】
145 0
Struts2【开发Action】(一)
|
Java Apache 数据格式
Struts Action 控制器
控制器 即,mvc模型的控制器模型,用于接收数据,传递给视图层,和模型层默认使用execute方法 查看相关接口 查看com.opensymphony.xwork2下的Action接口文件如下 /* * Licensed to the Apache Software Foundation (AS...
1078 0
|
XML 前端开发 Java
SpringMVC整合FreeMarker实例
FreeMarker作为模板引擎,是比较常用的。 FreeMarker官方文档地址为:https://freemarker.apache.org/ 现在浏览器或者翻译工具这么多,对于英文方面,我想大多数天天敲代码的,奋战在前线的同志们,对于很多编程实用单词应该不陌生,如果语文老师不是XX老师教的,我想通过Google或者其他翻译工具翻译一些意思,我想大家应该是可以看的懂,和判断是否存在问题的。
1365 0
|
Web App开发 前端开发 Java
SpringMVC+Thymeleaf 处理表单提交
SpringMVC+Thymeleaf 处理表单提交 thymleaf处理表单提交的方式和jsp有些类似,也有点不同之处,这里操作一个小Demo,并说明: 1.
2098 0
|
Java Apache 容器
Spring Boot Controller 返回jsp页面结果404
版权声明:本文为 testcs_dn(微wx笑) 原创文章,非商用自由转载-保持署名-注明出处,谢谢。 https://blog.csdn.net/testcs_dn/article/details/79708989 ...
1165 0
|
Web App开发 前端开发 Java
spring mvc的errors标签和validator用法
通过示例学习, 然后举一返三, 是最快的吸收知识的方式。
2399 0