6429ab88
孙向锦
remove
|
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
if(window.top!=window.self){
$("body",top.document).append('<div class="loading" style="background:rgba(0,0,0,0.5);width:100%;height:100%;position:fixed;top:0;display:block;"><img src="'+url+'" width="200px" style="position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;"/></div>');
}else{
if($(".loading").length==0)
{
//alert($("body").length);
$("body").append('<div class="loading" style="background:rgba(0,0,0,0.5);width:100%;height:100%;position:fixed;top:0;display:block;"><img src="'+url+'" width="200px" style="position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;"/></div>');
}
}
},
remove:function(){
if(window.top!=window.self){
$(".loading",top.document).remove();
}else{
if($(".loading").length>0)
$(".loading").remove();
}
}
}
|