Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在命令按钮和 commandLink 上只设置一个字符下划线。html 中的示例:
<button type="button"><u>C</u>lick Me!</button>
如何在 jsf 命令按钮上实现。
以下是 commandLink 的方法
<h:commandLink style="text-decoration:none;"> <h:outputText value="<u>C</u>lick Me!" escape="false"/> </h:commandLink>
不确定如何仅使用 JSF 对 commandButton 进行操作...您可能想尝试使用 jquery 更改值...