显示消息5秒钟

时间:2012-05-10 18:50:49

标签: cordova sencha-touch extjs sencha-touch-2

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

显示消息的代码是;

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

和隐藏消息的代码是;

Ext.Msg.hide();

但是如何仅显示5 seconds

2 个答案:

答案 0 :(得分:3)

var alertBox = Ext.Msg.alert("Alert","How are you?");
setTimeout(function(){
   alertBox.hide();
}, 
5000);

答案 1 :(得分:2)

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

setTimeout(function () {
    Ext.Msg.hide();
}, 5000);