首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

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

2012-03-17 
JSFh:message标签h:inputSecretid”password”value”#{user.password}”f:validateLengthminimum”8”/

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> 之内吧????


[解决办法]
写在外面,上面的正确
[解决办法]
上面的正确

热点排行