我的代码中有两个commandLink。
<h:commandLink action="#{localeController.switchLocale('en')}" value="English"/> |
<h:commandLink action="#{localeController.switchLocale('fr')}" rendered="true" value="French"/>
我想为所选链接设置一些CSS样式。我试过a:visited
,但它不起作用。如何对所选链接进行一些更改?
请建议!