码迷,mamicode.com
首页 > 其他好文 > 详细

Easyui 弹出加载中的遮罩的两种方法

时间:2018-06-04 14:25:50      阅读:309      评论:0      收藏:0      [点我收藏+]

标签:grid   message   window   title   spl   .data   取消   ogr   func   

第一种:

//弹出加载层
function load() {  
    $("<div class=\"datagrid-mask\"></div>").css({ display: "block", width: "100%", height: $(window).height() }).appendTo("body");  
    $("<div class=\"datagrid-mask-msg\"></div>").html("邮件发送中,请稍候。。。").appendTo("body").css({ display: "block", left: ($(document.body).outerWidth(true) - 190) / 2, top: ($(window).height() - 45) / 2 });  
}
//取消加载层  
function disLoad() {  
    $(".datagrid-mask").remove();  
    $(".datagrid-mask-msg").remove();  

}

 

第二种:

//弹出加载层

$.messager.progress({  title: ‘提示‘,  msg: ‘数据正在处理中,请稍候……‘,  text: ‘‘  });

//取消加载层  

$.messager.progress(‘close‘);

Easyui 弹出加载中的遮罩的两种方法

标签:grid   message   window   title   spl   .data   取消   ogr   func   

原文地址:https://www.cnblogs.com/hailexuexi/p/9132458.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!