标签: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‘);
标签:grid message window title spl .data 取消 ogr func
原文地址:https://www.cnblogs.com/hailexuexi/p/9132458.html