我有这个
<h:outputLink value="http://.....index.html"
target="_blank">open</h:outputLink>
但它显示像链接。我怎样才能创建这个按钮?我需要按钮&#34;打开&#34;。当我按下此按钮时,我需要在浏览器的新选项卡中打开我的链接。
答案 0 :(得分:12)
请提及您的PF版本我们也使用如下,它适用于旧版本试试让我们知道
<p:button value="Open" href="http://.....index.html" target="_blank" />
答案 1 :(得分:-2)
您可以使用<p:button>
或<p:commandButton>:
<p:commandButton value="Open" action="index.html" ....other optional attributes/>
<p:button value="Open" outcome="http://.....index.html" >