阅读(1977) (0)

_login.showBackground前景显示/隐藏桌面背景层

2017-02-07 15:04:49 更新
  • 函数原型

/* 前端显示
/隐藏桌面背景层,对于可操作的背景(如网址背景)有功效 */
_config.topbackground=0;
_login.showBackground=function(){ //前景显示桌面背景层,对于可操作的背景有功效
	_config.topbackground=!_config.topbackground	
	if(_config.topbackground){
			 jQuery('#wrapper_div').css('z-index',100001);		 
			 jQuery('#hidebackground_button').show();	
	}else {		
	                 jQuery('#wrapper_div').css('z-index',0);		
	                 jQuery('#hidebackground_button').hide();
	}
 }