-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.html
65 lines (64 loc) · 3.05 KB
/
page.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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta http-equiv="Content-Type" content="text/html" />
<link rel="stylesheet" type="text/css" href="css/mainpage.css"/>
<title>图书管理系统</title>
<script type="text/javascript" src="js/Pagelogic.js"></script>
<script type="text/javascript" src="js/Data.js" ></script>
</head>
<body onload="init();">
<div id="sitemap">
<div id="main" onclick="clickbtn(1);" onmouseover="onmouseoverbtn(1);" onmouseout="onmouseoutbtn(1);"><span id="logaa">Library</span></div>
<div id="booksearch" onclick="clickbtn(2);" onmouseover="onmouseoverbtn(2);" onmouseout="onmouseoutbtn(2);"><span>书籍查询</span></div>
<div id="readersearch" onclick="clickbtn(3);" onmouseover="onmouseoverbtn(3);" onmouseout="onmouseoutbtn(3);"><span>读者查询</span></div>
<div id="login" onclick="clickbtn(4);" onmouseover="onmouseoverbtn(4);" onmouseout="onmouseoutbtn(4);"><span>登陆</span></div>
<div id="logout" onclick="clickbtn(5);" onmouseover="onmouseoverbtn(5);" onmouseout="onmouseoutbtn(5);"><span>登出</span></div>
</div>
<div id="mainpage" class="maincon" style="display:block">
<article>该项目是一个简单地图书馆图书管理系统。可用于小型图书馆的图书管理工作。<br/>该项目是起于西安电子科技大学软件学院 2015 年数据结构课程大作业。<br/>目前遵循 BSD3 开源协议。<br/>这个项目后端使用以 Haskell 编写的框架 wrap 与 wai。同时使用著名的开源数据库 PostgreSQL ,作为存储数据的方式。<br/>整个项目使用 Travis-ci 持续集成服务,与 Docker 容器服务。同时计划在 DaoCloud。</article>
<img></img>
</div>
<div id="booksearchpage" class="maincon" style="display:none">
<div id="Bookis">
<p>按图书ISBN码查询</p>
<input type="number" id="BookInfoSearch" placeholder="请输入图书ISBN码!" />
<button type="submit" class="submit_button" onclick="BookInfoSearch();">查询</button>
</div>
<div id="BookInfo">
<table border="1">
<tr>
<th>name</th>
<th>书名</th>
</tr>
<tr>
<th>author</th>
<th>author</th>
</tr>
<tr>
<th>publishLocation</th>
<th>publishLocation</th>
</tr>
<tr>
<th>pressHouse</th>
<th>pressHouse</th>
</tr>
<tr>
<th>publishDate</th>
<th>publishDate</th>
</tr>
<tr>
<th>ISBN</th>
<th>ISBN</th>
</tr>
<tr>
<th>location</th>
<th>location</th>
</tr>
</table>
</div>
</div>
<div id="readersearchpage" class="maincon" style="display:none">
</div>
</body>
</html>