📄 vetsearch_name.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>vetsearch_name.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 id=tblStudent width="40%" border="0" align="center"
cellpadding="0" cellspacing="0">
<tr>
<td height="30" align="center">
兽医名称
</td>
<td height="30" align="center">
专业
</td>
</tr>
<!--DWLayoutTable-->
<c:forEach items="${vetList}" var="vet">
<tr class=first onmouseover=selectRow(this); onmouseout=deSelectRow(this);>
<td height="30" align="center">
${vet.vetName }
</td>
<td height="30" align="center">
${vet.specName }
</td>
</tr>
</c:forEach>
</table>
<br>
<table border="0" align="center" bgcolor="#FFFFFF">
<tr>
<td colspan="2" align="center">
<a href="vetsearch.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 + -