<p:commandLink id="ajax" style="margin-right:20px;">
<h:outputText value="Ajax Submit" />
</p:commandLink>
我想在onmouseover上下划线。
答案 0 :(得分:-1)
使用CSS样式。
示例:
<p:commandLink id="mycommandLinkID" .../>
CSS样式
a.mycommandLinkID:hover {
text-decoration:underline;
}