-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsqlite.html
33 lines (32 loc) · 1.23 KB
/
jsqlite.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
<!DOCTYPE html>
<html lang="zn-CH">
<head>
<meta charset="UTF-8">
<title>操作数据库</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.css">
<script src="js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<style></style>
</head>
<body onLoad="loadAll()">
<div class="container-fluid">
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="min-width: 2em;"></div>
</div>
<div id="list" class="table-responsive">
</div>
<form class="form-inline">
<div class="form-group">
<label class="form-control-static" for="works">工作:</label>
<input type="text" id="works" name="works" class="form-control works" placeholder="输入内容..."/>
<input type="button" class="btn btn-default" onclick="save()" value="添加"/>
<span class="glyphicon glyphicon-minus"></span>
<span class="glyphicon glyphicon-remove"></span>
</div>
<span id="hidden" hidden>0</span>
</form>
<br/>
</div>
</body>
</html>