?? nurse_operationroomlist.jsp
字號(hào):
<%@ page language="java" import="java.util.*" pageEncoding="gbk"%>
<html>
<head>
<title>護(hù)士和手術(shù)室查看</title>
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/Css/LightBlue_Css.css"/>
</head>
<body>
<form action="<%=request.getContextPath()%>/nurse_operationRoomServlet?opertion=4" method="post">
<table class="simple textCss">
<tr><th align="center" colspan="4">護(hù)士和手術(shù)室表</th></tr>
<tr>
<th width="20%" align="center">護(hù)士編號(hào)</th>
<th width="30%" align="center">護(hù)士姓名</th>
<th width="20%" align="center">手術(shù)室編號(hào)</th>
<th width="30%" align="center">手術(shù)室名稱</th>
</tr>
<%
ArrayList arr=(ArrayList)request.getAttribute("nurse_operationRoomList");
if(arr!=null){
%>
<tr>
<td align="center"><%=arr.get(0)%></td>
<td align="center"><%=arr.get(1)%></td>
<td align="center"><%=arr.get(2)%></td>
<td align="center"><%=arr.get(arr.size()-1)%></td>
</tr>
<% }%>
</table>
<table class="simple textCss">
<tr><th align="center" colspan="4">
<input type="button" class="buttonClass" value="返回"
onclick="window.location.href='<%=request.getContextPath()%>/view_zhouxiaoli/nurse_operationRoom.jsp'">
</th></tr>
</table>
</form>
</body>
</html>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -