html – 输入类型=“文本”中的Thymeleaf占位符

前端之家收集整理的这篇文章主要介绍了html – 输入类型=“文本”中的Thymeleaf占位符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个输入文本
<input type="text" id="usernameId"  name="username" placeholder="User" />

我想从属性文件中替换1个文本的占位符用户的文本,但我不知道是否可能

<input type="text" id="usernameId"  name="username" placeholder="th:text="#{user.placeholder}""  />

解决方法

有一个特定的Thymeleaf属性
<input type="text" id="usernameId"  name="username" th:placeholder="#{user.placeholder}" />

它也可以这样写:

<input type="text" id="usernameId"  name="username" th:attr="placeholder=#{user.placeholder}" />
原文链接:https://www.f2er.com/html/225201.html

猜你在找的HTML相关文章