📄 menu.jsp
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=GBK" />
<title>Menu</title>
<style type="text/css">
.Menu
{
font-size: 12px;
color: #000;
background: #f2f7fc;
}
.MenuTreeNode
{
color: #000;
background: #f2f7fc;
border: solid 1px #f2f7fc;
font-size: 12px;
text-decoration: none;
padding: 0 2px;
}
.DepartTreeNode
{
color: #000;
background: #f2faff;
border: 0;
font-size: 12px;
text-decoration: none;
padding: 0 2px;
}
.TreeNodeHover
{
color: #fff;
background: #ccf;
border: solid 1px #a5a5de;
font-size: 12px;
text-decoration: none;
padding: 0 2px;
}
.TreeNodeSelected
{
color: #fff;
background: #819aff;
border: solid 1px #a5a5de;
font-size: 12px;
text-decoration: none;
padding: 0 2px;
}
</style>
<script language="javascript" src="../js/simpleCalendar.js"></script>
<%
String userid = (String)request.getAttribute("userid");
%>
<script language="javascript">
function returndate(vvdate){
//点日历
if( vvdate == "" || vvdate == " " ){return ;}
var nowDate = formatDate(today.getFullYear(),today.getMonth() + 1,vvdate);
var left = screen.width/2 - 250;
var top = screen.height/2 - 350;
var sFeatures="left="+left+",top="+top+",height=550,width=700,status=no,menubar=no,location=no,scrollbars=yes";
//document.location.href = "/servelt/FindOneDay?date="+nowDate+"and userid="+userid ;
//document.location.target="main";
document.location.href="../index.jsp";
}
</script>
<link href="../css/calendar.css" type="text/css" rel="stylesheet">
</head>
<body class="Menu" style="height:100%; overflow:hidden;" leftmargin=0 topmargin=0 rightmargin=0>
<form id="form1" runat="server">
<div style="margin:5px 0 0 0;width:100%; height:99%; overflow:auto;">
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -