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

时间:2017-05-05 17:21:11

标签: html thymeleaf

我在

中有这个输入文字
<input type="text" id="usernameId"  name="username" placeholder="User" />

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

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

1 个答案:

答案 0 :(得分:13)

有一个特定的Thymeleaf属性:

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

它也可以这样写:

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