📄 del.jsp
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>
del
</title>
</head>
<body bgcolor="#ffffff">
<c:if test="${empty requestScope.delresult}">
<center>
<table>
<tr>
<td>
<font color="red">是否执行删除操作</font>
</td>
</tr>
<tr>
<td>
<a href="delservlet?id=${param.id}">确认</a>
</td>
<td>
<a onclick="javascript:window.close(this);">取消</a>
</td>
</tr>
</table>
</center>
</c:if>
<c:if test="${requestScope.delresult==false}">
<center>
<table>
<tr>
<td>
<font color="red">抱歉删除失败</font>
</td>
</tr>
<tr>
<td>
<a onclick="javascript:window.close(this);">离开</a>
</td>
</tr>
</table>
</center>
</c:if>
<c:if test="${requestScope.delresult==true}">
<center>
<table>
<tr>
<td>
<font color="red">恭喜!删除成功</font>
</td>
</tr>
<tr>
<td>
<a onclick="javascript:opener.location.href='oprater?action=select';javascript:window.close(this);"">确认</a>
</td>
</tr>
</table>
</center>
</c:if>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -