You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
<%--
|
|
|
|
|
此部分为文件的创建相关注释,说明该文件是由 IntelliJ IDEA 创建的,创建用户是 jhu,创建时间为2020年10月5日22时17分,同时告知若要修改此模板可通过文件设置里的文件模板相关功能来操作。
|
|
|
|
|
--%>
|
|
|
|
|
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>404</title>
|
|
|
|
|
<%-- 引入公共的头部页面(header.jsp),一般这个头部页面中会包含诸如页面通用的样式文件引入、脚本文件引入或者一些页面头部通用布局结构等内容,方便在多个页面间复用代码。 --%>
|
|
|
|
|
<%@include file="/pages/common/header.jsp"%>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="header">
|
|
|
|
|
<img class="logo_img" alt="" src="static/img/logo.gif" >
|
|
|
|
|
<span class="wel_word">404error</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="main">
|
|
|
|
|
<table>
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="width: 300px">亲,您访问的页面不存在或已被删除!</td>
|
|
|
|
|
<%-- 在表格的第一行的单元格中,显示提示信息,告知用户所访问的页面出现了不存在或者已被删除的情况。 --%>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
|
|
|
|
<a href="index.jsp" style="size: 300px;color: red">返回首页</a>
|
|
|
|
|
<%-- 在表格的第二行单元格中,设置一个超链接,链接到“index.jsp”页面,并且设置了链接文字的样式,包括字号(原代码中“size”属性写法有误,正确的是“font-size”,这里是按原代码注释)和颜色,引导用户点击返回首页。 --%>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- 这是页脚的引入 -->
|
|
|
|
|
<%@ include file="/pages/common/footer.jsp" %>
|
|
|
|
|
<%-- 通过此指令引入公共的页脚页面(footer.jsp),该页脚页面通常包含页面底部的一些通用信息,比如版权声明、联系方式等内容,同样是为了实现代码复用。 --%>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|