📄 instructor_dele_list.jsp
字号:
<%@ page language="java" pageEncoding="GB2312"%>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<style>
TABLE {
BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px
}
TD {
FONT: 12px 宋体
}
.hand {cursor:hand
}
</style>
<html:html>
<body>
<p> </p>
<table border="1" align="center" cellpadding="0" cellspacing="0" >
<tr>
<td height = "20%" align = "center">编号</td>
<td height="60%" align="center">技术支持</td>
<td width="20%" nowrap><div align="center">操作</div></td>
</tr>
<c:forEach var="instructors" items="${ListInstructors}">
<tr class="hand" onmousemove="color=this.style.backgroundColor;this.style.backgroundColor='rgb(162,162,0)'" style="width: 529px" onmouseout="this.style.backgroundColor='white'">
<td>${instructors.ID}</td>
<td>${instructors.title}</td>
<td><input type="button" value="删除" onclick="window.location.href='instructor.do?method=delInstructor&id=${instructors.ID}'" /></td>
</tr>
</c:forEach>
</table>
<table width="90%" border="0" align="center">
</table>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -