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

📄 allergyhistory.jsp

📁 是一个J2EE的项目,在eclipse下编译通过,应用struts,hibernate开源框架,界面不是很漂亮.
💻 JSP
字号:
<%@ page contentType="text/html; charset=gb2312" language="java"  errorPage="" %>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<%@ taglib uri="/tags/struts-html" prefix="html" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>

<body>
<table width="100%" border="0" style="position:absolute; left; left: 10px; width: 125px; top: 9px; height: 108px;">
  <tr>
    <td><a href="jsp/createallergyhistory.jsp">新建过敏史记录</td>
  </tr>
</table>
<table id="Table1" border="2" style="position:absolute; left:230px;">
	<tr>
		<td style="background-color: #a2c9ff;" width="80px" align="center">姓名</td>
		<td style="background-color: #a2c9ff;" width="50px" align="center">性别</td>
		<td style="background-color: #a2c9ff;" width="150px" align="center">过敏史类型</td>
		<td style="background-color: #a2c9ff;" width="400px" align="center">过敏史描述</td>
		<td style="background-color: #a2c9ff;" width="150px" align="center" colspan="3">操作</td>
	</tr>
	<c:forEach items="${ahlist}" var="ah"> 
	<tr>
	<td align="center"><c:out value="${ah.name}"/></td>
	<td align="center"><c:out value="${ah.sex}"/></td>
	<td align="center"><c:out value="${ah.type}"/></td>
	<td align="center"><c:out value="${ah.description}"/></td>
	<td align="center"><html:link href="" paramId="ahid" paramName="ah" paramProperty="id">修改</html:link></td>
	<td align="center"><a href="#" onclick = "test(<c:out value="${ah.id}"/>)">删除</a></td>
	<td align="center"><html:link href="" paramId="ahid" paramName="ah" paramProperty="id">注销</html:link></td>
	</tr>
	</c:forEach> 
	</table>
	<c:out value="${aaaa}"/>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -