📄 petvisithistory.jsp
字号:
<%@ page language="java" pageEncoding="utf-8"%>
<%@ include file="taglibs.jsp" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
<html:base />
<title>petvisithistory.jsp</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<link rel="stylesheet" type="text/css" href="css/table.css">
<link rel="stylesheet" type="text/css" href="css/default.css">
<script type="text/javascript">
var originRowStyle;
function selectRow(row)
{
originRowStyle=row.className;
row.className='selected';
}
function deSelectRow(row)
{
row.className=originRowStyle;
}
</script>
</head>
<body>
<jsp:include flush="true" page="top.jsp"></jsp:include>
<table class="list" width="600" border="0" align="center" bgcolor="#FFFFFF">
<tr>
<td width="40%" align="right">
宠物名称:
</td>
<td width="70%" align="left">
${pet.petName }
</td>
</tr>
<tr>
<td align="right">
类型:
</td>
<td>
${pet.petTypeName }
</td>
</tr>
<tr>
<td align="right">
所有人名称:
</td>
<td>
${pet.petOwnerName }
</td>
</tr>
</table>
<p>
<table class="list" width="600" border="1" align="center" bgcolor="#D5D5D5">
<tr>
<td height="30" align="center">
诊断时间:
</td>
<td height="30" align="center">
备注:
</td>
</tr>
<!--DWLayoutTable-->
<c:forEach items="${visitList }" var="visit" >
<tr class=first onmouseover=selectRow(this); onmouseout=deSelectRow(this);>
<td height="30" align="center">
${visit.petVisitDate }
</td>
<td height="30" align="center">
${visit.petVisitDescription }
</td>
</tr>
</c:forEach >
</table>
<p>
<table border="0" align="center">
<tr>
<td colspan="2" align="center">
<a href="petview_name.jsp">返回</a>
</td>
</tr>
</table>
<jsp:include flush="true" page="tail.jsp"></jsp:include>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -