我有一个【模板宣布】页面,代码,预览图以下
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script type="text/javascript" src="<%=request.getContextPath()+"/resources/js/jquery-1.7.1.js"%>"></script> <script type="text/javascript" src="<%=request.getContextPath()+"/resources/js/uploadPanel.js"%>"></script> <title>宣布模板</title> </head> <body> <form action="<%=request.getContextPath()+"/faceController/insert" %>" method="post" enctype="multipart/form-data"> <table> <tr> <td><input id="face_submit" type="submit" value="宣布" /></td> </tr> <tr> <td>题目:</td> <td><input type="text" name="title" value=""/></td> </tr> <tr> <td>描写:</td> <td><textarea rows="10" cols="50" name="message"></textarea></td> </tr> <tr> <td><input type="hidden" name="fileIds" value=""></td> </tr> </table> </form> <input type="button" name="checkButton" value="选择文件" onclick="clickButton()"/> <form id="upload_panel_form" action="<%=request.getContextPath()+"/fileController/upload" %>" method="post" enctype="multipart/form-data"> <input id="checkFile" class="checkFile" type="file" name="files" accept=".zip,.jpg,.jpeg" value="选择文件" onchange="changeList()" multiple="multiple"/> </form> <div id="upload_panel_list_div" class="upload_panel_list_div"> <table id="upload_panel_list_table" class="upload_panel_list_table"> <tbody id="upload_panel_list_table_tbody" class="upload_panel_list_table_tbody"> <tr> </tr> </tbody> </table> </div> </body> </html><%@ page language="java" co