📄 pname.jsp~7~
字号:
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>
pet_sel_name
</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style type="text/css">
.STYLE1 {color: #0033FF}
.STYLE2 {color: #0066FF}
</style>
</head>
<body bgcolor="#ffffff">
<h1 align="center">宠物<span class="STYLE1">${param.pname}</span>的详细信息如下:</h1>
<table width="787"border="0" align="center">
<tr>
<td>编号</td>
<td>所有人</td>
<td>名称</td>
<td>种类</td>
<td>性别</td>
<td>登记时间</td>
</tr>
<c:forEach var="pet" items="${requestScope.pet}">
<tr>
<td><span class="STYLE2">${pet.pid}</span></td>
<td><span class="STYLE2">${pet.hname}</span></td>
<td><span class="STYLE2">${pet.pname}</span></td>
<td><span class="STYLE2">${pet.pkind}</span></td>
<td><span class="STYLE2">${pet.psex}</span></td>
<td><span class="STYLE2">${pet.ptime}</span></td>
</tr>
</c:forEach>
</table>
<c:if test="${param.result}">
<h2>没有相关信息!!!</h2>
</c:if>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -