today.jsp
2.18 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<%@ 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 class="tab-content">
<div class="tab-pane active" id="his1">
<img src="/static/images/historyall.png" draggable="false" usemap="#planetmap1">
<map name="planetmap1">
<area shape="rect" coords="450,1180,520,1225" href="/word/607" target="_blank">
</map>
</div>
<div class="tab-pane" id="his2">
<img src="/static/images/historything.png" draggable="false">
</div>
<div class="tab-pane" id="his3">
<img src="/static/images/historytoday.png" draggable="false" usemap="#planetmap2">
<map name="planetmap2">
<area shape="rect" coords="437,678,505,720" href="/word/607" target="_blank">
</map>
</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"/>