封装一个Ext消息提示框,显示几秒后自动消失
最近项目需要,封装了一个Ext消息提示框,提示信息显示几秒后就自动消失。
css代码:
- .msg .x-box-mc {
- font-size:14px;
- }
- #msg-div {
- position:absolute;
- left:650px;
- top:410px;
- width:600px;
- z-index:20000;
- }
- .msg-close{
- width:10px; height:10px; position:absolute; top:1px; right:10px;cursor:hand;
- }
- .msg-h3 {
- font-size:13px;
- color:#2870b2;
- font-weight:bold;
- margin:10px 0;
- }
js代码:
- /**
- *信息提示框,显示后迅速消失
- */
- Ext.QuickMsg = function(){
- var msgCt;
- function createBox(t, s,isClose){
- var html = new Array();
- html.push('');
- html.push('');
- html.push('