// JavaScript Document function open_layer_detail(div_name,width,height){ if(width==''){ width=0; } if(height==''){ height=0; } $.blockUI({ message:$('#'+div_name), css:{ cursor:'default', width: width + 'px', height:height+ 'px', padding:'0px', top:($(window).height()-height)/2 + 'px', left:($(window).width()-width)/2 + 'px' } }); } function open_loading_status(loading_name){ width=$('#'+loading_name).css('width').replace("px",""); height=$('#'+loading_name).css('height').replace("px",""); $.blockUI({ message:$('#'+loading_name), css:{ cursor:'default', border:'', backgroundColor:'', width: width + 'px', height:height+ 'px', padding:'0px', top:($(window).height()-height)/2 + 'px', left:($(window).width()-width)/2 + 'px' } }); } function close_layer_detail(){ $.unblockUI(); } function close_top_layer_detail(){ top.$.unblockUI(); } //建立執行的div $(function(){ $('body').prepend(""); $('body').prepend(''); }); //end