📄 searchbytype.jsp
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c"%>
<%@ include file="../../forumdata/cache/cache_settings.jsp"%>
<jsp:include flush="true" page="header.jsp"/>
<div id="nav"><a href="${settings.indexname}">${settings.bbname}</a> » 搜索</div>
<form method="post" action="search.jsp?action=search&type=type">
<div class="mainbox formbox">
<span class="headactions"><a href="member.jsp?action=credits&view=search" target="_blank">查看积分策略说明</a></span>
<h1>搜索更多分类信息</h1>
<table summary="搜索" cellspacing="0" cellpadding="0">
<tr><td style="border-bottom: 0px"><label for="typeid">分类信息</label></td><td style="border-bottom: 0px"><select name="typeid" onchange=""><option value="0">无</option><c:forEach items="${threadtype}" var="types"><option value="${types.typeid}" ${typeid==(types.typeid)?"selected":""}>${types.name}</option></c:forEach></select> <span id="threadtypeswait"></span></td></tr>
<tbody id="threadtypes"></tbody>
<tr><td valign="top"><label for="srchfid">搜索范围</label></td><td><select id="srchfid" name="srchfid" multiple="multiple" size="10" style="width: 26em;"><option value="all" selected="selected">搜索所有开放的版块</option><option value="all"> </option>${forumselect}</select></td></tr>
<tr><th> </th><td><button class="submit" type="submit" name="searchsubmit" value="true">搜索</button></td></tr>
</table>
</div>
</form>
<script type="text/javascript">
function orderbyselect(ordertype) {
$('orderby1').style.display = 'none';
$('orderby1').style.position = 'absolute';
$('orderby1').disabled = true;
$('specialtr1').style.display = 'none';
$('orderby2').style.display = 'none';
$('orderby2').style.position = 'absolute';
$('orderby2').disabled = true;
$('specialtr2').style.display = 'none';
$('orderby' + ordertype).style.display = '';
$('orderby' + ordertype).style.position = 'static';
$('orderby' + ordertype).disabled = false;
$('specialtr' + ordertype).style.display = '';
}
</script>
<jsp:include flush="true" page="footer.jsp" />
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -