today.jsp
1.34 KB
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
<%@ include file="/WEB-INF/jsp/include/taglib.jsp" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<jsp:include page="/WEB-INF/jsp/include/header_search.jsp">
<jsp:param name="pageTitle" value="历史上的今天"/>
</jsp:include>
<div class="history-content text-center">
<ul class="history-tab js-tab">
<li>
<a href="#his1"></a>
</li>
<li>
<a href="#his2"></a>
</li>
<li>
<a href="#his3"></a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="his1">
<img src="/static/images/historyall.png">
</div>
<div class="tab-pane" id="his2">
<img src="/static/images/historything.png">
</div>
<div class="tab-pane" id="his3">
<img src="/static/images/historytoday.png">
</div>
</div>
</div>
<footer class="footer-main">
<div class="container">
<p class="copyright">Copyright © 2006-2016 上海辞书出版社有限公司
<a class="beian" href="#" target="_blank">沪ICP备12009386号-3</a>
</p>
</div>
</footer>
<script>
// tab选项卡
$(".js-tab a").click(function(e) {
e.preventDefault()
$(this).tab('show')
})
</script>
<jsp:include page="/WEB-INF/jsp/include/footer.jsp"/>