0

我需要显示以下消息 5 秒钟,然后将其隐藏。

显示消息的代码是;

Ext.Msg.alert("Alert","How are you?");

隐藏消息的代码是;

Ext.Msg.hide();

但如何仅显示它5 seconds

4

2 回答 2

3
var alertBox = Ext.Msg.alert("Alert","How are you?");
setTimeout(function(){
   alertBox.hide();
}, 
5000);
于 2012-05-10T18:54:17.027 回答
2

使用 setTimeout 应该可以解决问题:

setTimeout(function () {
    Ext.Msg.hide();
}, 5000);
于 2012-05-10T18:54:27.503 回答