| 1234567891011121314151617181920212223 |
- /*载入遮罩开启*/
- jQuery.fn.loading = function(msg) {
- if(msg==null||msg==''){
- msg="正在处理,请稍候。。。";
- }
- $("<div id=\"loading-mask\" class=\"datagrid-mask\"></div>").css({
- display : "block",
- width : "100%",
- height : $(window).height()
- }).appendTo(this);
- $("<div id=\"loading-mask-msg\" class=\"datagrid-mask-msg\"></div>").html(msg).appendTo(
- this).css({
- display : "block",
- left : ($(document.body).outerWidth(true) - 190) / 2,
- top : ($(window).height() - 45) / 2
- });
- }
- /*载入遮罩关闭*/
- jQuery.fn.loadend = function() {
- $(this).children('#loading-mask').remove();
- $(this).children('#loading-mask-msg').remove();
- }
|