easyui 进度条

//加载进度条(统一在顶层窗口中使用)
lpbc.startPorcess = function(){
$.messager.progress({
title : $xcp.i18n('progress.title'),
text : $xcp.i18n('progress.text')
});
};

//关闭顶层窗口中的进度条
lpbc.stopPorcess = function(){
try{
//关闭顶层窗口的进度条显示
top.window.$.messager.progress('close');
}catch(e){

}
};

猜你喜欢

转载自zhihchen.iteye.com/blog/2169117