使用 wicket 我想在单击按钮或链接时打开一个新选项卡,我该如何实现?
我设法做的是在这样的弹出窗口中打开它:
PopupSettings popupSettings = new PopupSettings("popuppagemap").setLeft(0).setHeight(500).setWidth(500).setHeight(0);
// Popup example
final Link<Void> setPopupSettings = new BookmarkablePageLink<Void>("searchBtn", HomePage.class)
.setPopupSettings(popupSettings);
但这会在新窗口中打开它。