单击链接重定向到新选项卡

时间:2013-02-14 06:24:00

标签: jsf

我正在研究JSF。我有这样的要求。当我单击链接时,它应该在新选项卡中打开目标。但目标页面不在我的项目中。这是一个单独的应用程序。

我试过一个href,h:链接什么都没有用。 这是我最后尝试的。但它一次又一次地在新标签中打开相同的页面。

    <h:commandLink value="#{item.title}" target="http://localhost:89/kordil_edms/documents.php" /> 

1 个答案:

答案 0 :(得分:2)

试试这个 -

 <a href="http://localhost:89/kordil_edms/documents.php" target="_blank"> Open </a>