foot.jsp

来自「简单的医院系统」· JSP 代码 · 共 31 行

JSP
31
字号
<%@ page contentType="text/html; charset=gb2312"%>
<html>
<head>
<script language="javascript">
	function rep(){
		this.location.replace('${pageContext.request.contextPath}/foot.jsp');
	}
	window.setTimeout('rep()',30000); 
</script>

<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/css/mycss.css">
</head>

<body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">
	 <table width="100%" border="0" cellspacing="0">
	   <tr>
	     <td height="20" align="center" background="${pageContext.request.contextPath}/imgs/sb_bg.gif">&copy;版权所有.翻版毕究</td>
	   </tr>
	 </table>
	<%--<c:if test="${empty user}">
		 <script type="text/javascript" language="javascript">
			 <!--
				 if(self==top){
					alert("会话丢失,请重新登陆!!!");
					top.location='${pageContext.request.contextPath}';
				 }
			 -->
		 </script>
	</c:if>
--%></body>
</html>

⌨️ 快捷键说明

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