我在程序中显示了一些messageBox。例如,如果我成功保存数据,messageBox会显示“Successfull”。但我想通过计时器让它靠近。当它通过两秒时,它应该被关闭。我不需要准备好的代码。如果你告诉我如何做到这一点就足够了。顺便说一下,我的平台是GWT。
最诚挚的问候..
答案 0 :(得分:2)
除了Timer之外,还有更好的方法可以做到这一点。但是你可以使用计时器 使用GWT的com.google.gwt.user.client.Timer类。
Timer t = new Timer() {
public void run() {
Window.alert("Nifty, eh?");
// your messageBox code
t.cancel(); // Since you only need this run once.
}
};
// Schedule the timer to run once in 2 seconds.
t.schedule(2000);