/*载入遮罩开启*/ jQuery.fn.loading = function(msg) { if(msg==null||msg==''){ msg="正在处理,请稍候。。。"; } $("
").css({ display : "block", width : "100%", height : $(window).height() }).appendTo(this); $("
").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(); }