easyui弹出加载遮罩层(转)
Posted rivenlw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easyui弹出加载遮罩层(转)相关的知识,希望对你有一定的参考价值。
//弹出加载层 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(); }
以上是关于easyui弹出加载遮罩层(转)的主要内容,如果未能解决你的问题,请参考以下文章
easyui dialog 能不能在弹出窗口的时候不显示遮罩,且屏蔽其他地方的点击