bar.html

来自「中国银行天津分行源码」· HTML 代码 · 共 29 行

HTML
29
字号

<html>

<head>
<script type='text/javascript'>
var w_x = window.screen.availWidth/4.5;
var h_y = 90; //window.screen.availHeight/6.6;
parent.SysLeftRightFrm.cols = w_x+',3,*';
parent.parent.SysTopDownFrm.rows = '0,'+h_y+',*,0';
function ShowOrHide(str)
{
	if(parent.SysLeftRightFrm.cols == '0,8,*')
	{
		parent.SysLeftRightFrm.cols = w_x+',3,*';
		str.title = "隐藏主菜单";
	}
	else
	{
		parent.SysLeftRightFrm.cols = '0,8,*';
		str.title = "显示主菜单";
	}
}
</script>
</head>

<body topMargin=0 leftMargin=0 bgcolor="#d2d2d2" onclick="ShowOrHide(this)" style='cursor:hand' leftmargin="0" topmargin="0">
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?