easyui弹出加载遮罩层(转)

//弹出加载层
function load() {  
    $("<div class="datagrid-mask"></div>").css({ display: "block",  "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();  
}
原文地址:https://www.cnblogs.com/RivenLw/p/9712955.html