-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvanced.html
executable file
·109 lines (104 loc) · 4.68 KB
/
advanced.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=emulateIE7" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>WSM-Proj</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/advanced.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="container">
<div id="hd" class="ue-clear">
<div class="logo"></div>
<div class="inputArea">
<input type="text" class="searchInput" />
<input type="button" class="searchButton" />
<a class="back" href="index.html">返回主页</a>
</div>
</div>
<div class="divsion"></div>
<div id="bd">
<div id="main">
<div class="subfield">高级搜索</div>
<div class="subfieldContent">
<!--搜索范围-->
<dl class="ue-clear advanceItem qod">
<dd>
<label>搜索范围</label>
<span>选择要搜索的范围</span>
</dd>
<dt class="fillInArea">
<span class="choose">
<input name="scope" type="radio" id="qas">
<span class="text">Q&A</span>
</span>
<span class="choose">
<input type="radio" name="scope" id="docr">
<span class="text">医生</span>
</span>
<span class="choose">
<input type="radio" name="scope" checked="checked" id="ftxt">
<span class="text">全部</span>
</span>
</dt>
</dl>
<!--搜索关键字-->
<dl class="ue-clear advanceItem keyWords">
<dd>
<label>搜索关键字</label>
<div class="tips">
<p class="tip">包含以下<span class="impInfo">关键词</span></p>
</div>
</dd>
<dt class="fillInArea">
<p><input type="text" id="stxt"/></p>
</dt>
</dl>
<!--文件类型-->
<dl class="ue-clear advanceItem coln">
<dd>
<label>搜索字段</label>
<span>指定的字段</span>
</dd>
<dt class="fillInArea">
<span class="choose">
<input name="type" type="checkbox" checked="checked" id="title">
<span class="text">问题标题</span>
</span>
<span class="choose">
<input type="checkbox" name="type" id="detail">
<span class="text">问题详情</span>
</span>
<span class="choose">
<input type="checkbox" name="type" id="answer">
<span class="text">问题回复</span>
</span>
<span class="choose">
<input type="checkbox" name="type" id="name">
<span class="text">医生姓名</span>
</span>
<span class="choose">
<input type="checkbox" name="type" id="expert">
<span class="text">擅长疾病</span>
</span>
<span class="choose">
<input type="checkbox" name="type" id="profile">
<span class="text">医生简介</span>
</span>
</dt>
</dl>
<div class="button">
<input type="button" class="search" value="立刻搜索" />
</div>
</div>
</div><!-- End of main -->
</div><!--End of bd-->
</div>
<div id="foot">Copyright ©SJTU 版权所有</div>
</body>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.cookie.js"></script>
<script type="text/javascript" src="js/global.js"></script>
<script type="text/javascript" src="js/advanced.js"></script>
</html>