?? operatingroom.jsp
字號:
<%@ page language="java" pageEncoding="GBK"%>
<html>
<head>
<title>手術室的添加</title>
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/Css/LightBlue_Css.css"/>
<script type="text/javascript">
function check(form){
if(form.orNo.value==""){
alert("手術室編號不能為空");
}else if(form.address.value=="") {
alert("手術地址不能為空");
}else{
document.operationRoomformsad.submit();
}
}
</script>
</head>
<body>
<form action="<%=request.getContextPath()%>/operatingRoomServlet?opertion=3" method="post" name="operationRoomformsad">
<table class="simple textCss">
<tr><th align="center" colspan="2">手術室信息</th></tr>
<tr>
<th width="30%" align="right">手術室編號:</th>
<td><input type="text" name="orNo" class="txt"></td>
</tr>
<tr>
<th width="30%" align="right">類 型:</th>
<td>
<select name="leixing">
<option name="a" value="大型手術" selected>大型手術</option>
<option name="b" value="中型手術" selected>中型手術</option>
<option name="c" value="小型手術" selected>小型手術</option>
</select>
</td>
</tr>
<tr>
<th width="30%" align="right">地 址:</th>
<td><input type="text" name="address" class="txt"></td>
</tr>
<tr>
<th width="30%" align="right">備 注:</th>
<td><input type="text" name="info" class="txt"></td>
</tr>
<%--<tr>
<th width="30%" align="right">護士列表 :</th>
<td><input type="text" name="nurseList" class="txt"></td>
</tr>
--%><tr>
<th width="30%" align="right">是否空閑 :</th>
<td>
<input type="radio" name="r" value="1">是
<input type="radio" name="r" value="0" checked="checked">否
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="button" value="提交" class="buttonClass" onclick="return check(this.form);">
<input type="reset" value="重置" class="buttonClass">
</td>
</tr>
</table>
</form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -