📄 attachfiles.jsp
字号:
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<bean:define id="pid" name="postForm" property="id"></bean:define>
<bean:define id="bid" name="postForm" property="bid"></bean:define>
<table width="100%" border="0" cellpadding="3" cellspacing="0">
<form id="attachForm<%=pid%>" name="attachForm<%=pid%>" method="post" action="">
<input name="id" type="hidden" value="<%=pid%>" />
<input name="bid" type="hidden" value="<%=bid%>" />
<logic:iterate id="af" name="attachFiles" scope="request" type="java.lang.String" indexId="i">
<tr>
<td width="5%">
<div align="center">
<input type="checkbox" name="attachFileName<%=pid%>" value="<%=af%>" />
</div>
</td>
<td width="95%">附件[<%=(i.intValue()+1)%>]:<%=af%></td>
</tr>
</logic:iterate>
<tr>
<td colspan="2">
<input type="button" name="Submit" value="删除" onclick="delAttachFile('<%=bid%>','<%=pid%>');" class="button1" />
<input type="button" name="CloseAttchFile" value="关闭" onclick="closeShowUpfilePage('<%=pid%>');" class="button1" />
</td>
</tr>
</form>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -