Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 GWT/ExtGWT。我有一个小问题......我的网页中有一个超链接,当用户点击这个超链接时,应该打开一个新的浏览器窗口,其中包含一个小部件(我制作的一个小部件,其中包含一个带有文本框、标签、组合框...)。但我不知道我该怎么做。请帮我。
谢谢!
尝试使用文本对象,而不是使用超链接,添加标签/ css 使其看起来和感觉像超链接.. 添加 onClick 事件处理程序,如下所示:
Dialog dialog = new Dialog(); dialog.add(new NewWidget()); dialog.show();
或者,如果您更喜欢另一种外观(但我认为这更复杂):
Window.open(url, name, features);