我们正在使用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);
}
}
}
但使用类似的方法是否可能是前进的?
答案 0 :(得分:0)
尝试window.open(url)
。