Loading....創(chuàng)建正在加載遮罩

2018-12-02 17:52 更新

easyui 創(chuàng)建Loading正在加載遮罩 -=

easyui 調(diào)用ajax時(shí)的loading效果

1.添加Loading遮罩


function ajaxLoading(targetId,msg){   
    var targetId=targetId?'#'+targetId:body 
    var msg=msg?msg:"正在處理,請(qǐng)稍候。。。";
    $("<div class=\"datagrid-mask\"></div>").css({display:"block",width:"100%",height:$(window).height()}).appendTo(targetId);   
    $("<div class=\"datagrid-mask-msg\"></div>").html('正在處理,請(qǐng)稍候。。。').appendTo(targetId).css({display:"block",left:($(targetId).outerWidth(true) - 190) / 2,top:($(targetId).height() - 45) / 2});   
}   

2.取消遮罩

function ajaxLoadEnd(){
$(".datagrid-mask").remove();
$(".datagrid-mask-msg").remove();
}

實(shí)例:

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)