-1
<p:commandLink id="ajax" style="margin-right:20px;">  
            <h:outputText value="Ajax Submit" />  
        </p:commandLink>

我想在鼠标悬停时加下划线。

4

1 回答 1

-1

使用 CSS 样式。

例子 :

<p:commandLink id="mycommandLinkID" .../>

CSS 样式

a.mycommandLinkID:hover {
    text-decoration:underline;
}
于 2012-10-22T11:54:28.990 回答