cmchoicelist.jsp

来自「一个jsp写的bbs」· JSP 代码 · 共 37 行

JSP
37
字号
<%@ 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" %>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
  <html:form action="/coverManage">
  <html:hidden property="categoryID" styleId="categoryID"/>
  <tr>
    <td class="bgColor5"><table width="100%" border="0" cellpadding="5" cellspacing="1">
      <tr>
        <td colspan="3" class="bgColor3"><strong class="font1">精选文章列表</strong></td>
        </tr>
      <tr>
        <td colspan="3" class="bgColor2">帖子ID:
          <html:text property="postID" styleClass="input2" size="40">
          </html:text>
          <html:button property="choiceAddButton" styleClass="button1" onclick="choiceAdd();">添加文章</html:button>
        </td>
        </tr>
      <logic:iterate id="choice" name="choicelist" type="com.laoer.bbscs.bean.Choice">
      <tr>
        <td width="6%" class="bgColor4"><input type="checkbox" name="choiceIds" value="<%=choice.getId()%>" /></td>
        <td width="70%" class="bgColor2"><bean:write name="choice" property="title"/></td>
        <td width="24%" class="bgColor4"><bean:write name="choice" property="userNickName"/></td>
      </tr>
      </logic:iterate>
      <tr>
        <td colspan="3" class="bgColor3">
          <html:button property="delsChoices" styleClass="button1" onclick="delChoices();">删除</html:button>
          <html:button property="closeChoieListButton" styleClass="button1" onclick="closeCategoryAddPage();">关闭</html:button>
        </td>
        </tr>
      </html:form>
    </table></td>
  </tr>
</table>

⌨️ 快捷键说明

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