📄 sortm.jsp
字号:
<%@ page contentType="text/html; charset=utf-8" language="java" errorPage="" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>物品管理</title>
<link href="<%=request.getContextPath()%>/css/SMSpublic.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h2 class="title1"><strong>物品分类管理:</strong></h2>
<form id="form1" name="form1" method="post" action="sortDel.do">
<table width="767" border="1" cellpadding="1" cellspacing="1" class="tablelistcontent" >
<tr>
<td colspan="5"><h3 align="center" class="title2"><strong>类别信息显示</strong></h3></td>
</tr>
<tr>
<td height="31" width="101">选择</td>
<td width="129">分类ID</td>
<td width="135">类别名称</td>
<td width="284">类别信息</td>
<td width="88">操作</td>
</tr>
<c:forEach var="p" items="${plist}">
<tr>
<td height="31">
<input name="checkbox" type="checkbox" class="selectElement" value="${p.sortID }" /></td>
<td height="31"> ${p.sortID }</td>
<td>${p.name }</td>
<td>${p.information }</td>
<td><a href="getSort.do?sortID=${p.sortID }">修改分类</a></td>
</tr>
</c:forEach>
<tr >
<td height="31" colspan="3"><label for="Submit"></label>
<div align="center">
<input name="button" type="button" class="button" onclick="window.location.href='sortManage/sortAdd.jsp'" value="增加"/>
</div></td>
<td colspan="2"><div align="center">
<input name="Submit" type="submit" class="button" id="Submit2" value="删除" />
</div></td>
</tr>
</table>
</form>
<p align="center"><a href="goodsList.do" class="title2">对物品进行新的分类</a> </p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -