⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vetsearch_name.jsp

📁 爱心”宠物诊所的职员需要使用系统提供的如下功能: 浏览诊所的兽医以及他们的专业特长; 浏览宠物的主人(即诊所的客户)的相关信息; 更新宠物的主人的相关信息; 向系统中增加一个新客户; 浏览宠
💻 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 + -