0

我们正在使用 ICEFaces 1.8,我想转发到新的 URL,但希望它在新窗口中打开。我们目前能够执行重定向到新窗口,如下所示:

public static void redirectToUrl(String urlPath) {
    if (urlPath != null) {
        try {
            final String url = FacesUtil.getContextPath() + urlPath;

            final StringBuffer jsCommand = new StringBuffer();
            jsCommand.append("window.document.location.href='").append(url).append("';");

            JavascriptContext.addJavascriptCall(FacesContext.getCurrentInstance(), jsCommand.toString());
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
}

但是可以使用类似的方法进行前锋吗?

4

1 回答 1

0

试试window.open(url)

于 2010-04-01T15:02:14.263 回答