📄 newthread.jsp
字号:
<%@ page language="java" pageEncoding="UTF-8" contentType="text/vnd.wap.wml; charset=UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%
String encodIndex = response.encodeURL("index.jsp");
%>
<jsp:include page="header.jsp"></jsp:include>
<c:if test="${valueObject.threadtypes!=null && valueObject.threadtypes.types !=null}">
<select name="typeid" onchange="ajaxget('post.jsp?action=threadtypes&typeid='+this.options[this.selectedIndex].value+'&fid=${fid}&sid=${jsprun_sid}&rand='+Math.random(), 'threadtypes', 'threadtypeswait')">
<option value="0"> </option>
<c:forEach items="${valueObject.threadtypes.types}" var="threadtype">
<option value="${threadtype.key}"${threadtypes.special[threadtype.key]==1? "class='special'":""} ${threadtype.key==0?"selected='selected'":""}>${threadtype.value}</option>
</c:forEach>
</select>
<span id="threadtypeswait"></span>
</c:if>
标题: <input type="text" name="subject" value="" maxlength="80" format="M*m" /><br />
内容: <input type="text" name="message" value="" format="M*m" /><br />
<anchor title="提交">提交
<go method="post" href="<%=encodIndex %>?action=post&do=newthread&fid=${valueObject.fid }&sid=${valueObject.sid }">
<postfield name="subject" value="$(subject)" />
<postfield name="message" value="$(message)" />
<postfield name="formhash" value="${valueObject.formhash }" />
<c:if test="${valueObject.threadtypes!=null && valueObject.threadtypes.type !=null}">
<postfield name="typeid" value="$(typeid)" />
</c:if>
</go></anchor>
<br /><br />
<a href="<%=encodIndex %>?action=forum&fid=${valueObject.fid }">返回板块</a></p>
<jsp:include page="footer.jsp"></jsp:include>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -