Files
2026-08-31 16:22:00 +08:00

136 lines
5.1 KiB
HTML

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>动易百科</title>
<link rel="stylesheet" href="{PE.SiteConfig.SkinPath/}encyclopedia/public.css" type="text/css">
<link rel="stylesheet" href="{PE.SiteConfig.SkinPath/}encyclopedia/default.css" type="text/css">
<link rel="stylesheet" href="{PE.SiteConfig.SkinPath/}encyclopedia/index.css" type="text/css">
<script language="javascript" type="text/javascript" src="{PE.SiteConfig.ApplicationPath/}js/jquery.pack.js"></script>
<script language="javascript" type="text/javascript" src="{PE.SiteConfig.ApplicationPath/}js/slider.js"></script>
<!--[if lt IE 9]>
<script language="javascript" type="text/javascript" src="{PE.SiteConfig.SkinPath/}encyclopedia/js/DD_belatedPNG_0.0.8a-min-3gmin.js"></script>
<![endif]-->
<script language="javascript" type="text/javascript" src="{PE.SiteConfig.ApplicationPath/}js/Common.js"></script>
{PE.Label id="互动百科_信息提示弹出层" /}
{PE.Label id="互动百科_弹出层初始化JS" /}
<script type="text/javascript">
function SubmitSearch() {
if (jQuery("#TxtKeyword").val() == "") {
ShowMessage("error", "搜索关键字不能为空!", "");
return;
}
var order = 0;
var orderSelect = jQuery("#orderSelect option:selected").val();
var orderValue = jQuery("#td_order").find("input[type='radio']:checked").val();
if (orderSelect == 1) {
if (orderValue == "asc") {
order = 5;
} else {
order = 4;
}
} else if (orderSelect == 2) {
if (orderValue == "asc") {
order = 6;
} else {
order = 3;
}
}
var params = "?type=";
params += jQuery("#typeSelect").find("input[type='radio']:checked").val();
params += "&keyword=" + escape(jQuery("#TxtKeyword").val());
params += "&inputer=" + escape(jQuery("#TxtInputer").val());
params += "&dayDiff=" + jQuery("#timeSelect option:selected").val();
params += "&order=" + order;
location.href = "SearchList.aspx" + params;
}
</script>
</head>
<body>
<div class="wrapper">
<!--header-->
{PE.Label id="互动百科_网站顶部" /}
<div class="clear20"></div>
<!--main-->
<div class="mainBox">
<!--path-->
<div class="path"> <a href="Index.aspx">动易百科</a>&gt;<span>高级搜索</span></div>
<!--search-->
<div class="advancedSearch">
<div class="hd">
<h5>搜索</h5>
</div>
<div class="bd">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="tit">关键字:</td>
<td><input id="TxtKeyword" class="inputtext" type="text" value="" /></td>
</tr>
<tr>
<td class="tit">作者:</td>
<td><input id="TxtInputer" class="inputtext" type="text" value="" /></td>
</tr>
</table>
</div>
<div class="hd">
<h5>搜索选项</h5>
</div>
<div class="bd">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="tit">搜索方式:</td>
<td id="typeSelect">
<label><input type="radio" checked="checked" value="1" name="searchtype" />标题</label>
<label><input type="radio" value="2" name="searchtype" />标签</label>
<label><input type="radio" value="3" name="searchtype" />内容</label>
</td>
</tr>
<tr>
<td class="tit">搜索时间:</td>
<td id="td_time">
<select id="timeSelect">
<option value="0" selected="selected">全部时间</option>
<option value="1">1天</option>
<option value="7">1周</option>
<option value="30">1个月</option>
<option value="90">3个月</option>
<option value="180">6个月</option>
<option value="360">1年</option>
</select>
以内
</td>
</tr>
<tr>
<td class="tit">排序方式:</td>
<td id="td_order">
<select id="orderSelect">
<option value="1" selected="selected">更新时间</option>
<option value="2">浏览次数</option>
</select>
<label>
<input type="radio" checked="checked" value="desc" name="orderValue" />降序
</label>
<label>
<input type="radio" value="asc" name="orderValue" />升序
</label>
</td>
</tr>
</table>
</div>
<div class="ft"><a href="javascript:;" onclick="SubmitSearch()">搜索</a></div>
</div>
<div class="clearbox"></div>
</div>
<div class="clear12"></div>
<!--footer-->
<div class="footer">
<!--friendlyLinks--><!--copyRight-->
{PE.Label id="互动百科_网站底部" /}
</div>
</div>
</body>
</html>