当前位置: 代码迷 >> Java Web开发 >> JSF<h:message>标签解决思路
  详细解决方案

JSF<h:message>标签解决思路

热度:693   发布时间:2016-04-17 13:43:21.0
JSF<h:message>标签
<h:inputSecret   id   =”password”   value=”#{user.password}”>
<f:validateLength   minimum=”8”/>
</h:inputSecret>
<h:message   for   =   “password”/>


<h:inputSecret   id   =”password”   value=”#{user.password}”>
<f:validateLength   minimum=”8”/>
<h:message   for   =   “password”/>  
</h:inputSecret>


<h:message   for= " "> 标签应该在 </h:inputSecret> 之内吧????


------解决方案--------------------
写在外面,上面的正确
------解决方案--------------------
上面的正确
  相关解决方案