-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
33 lines (27 loc) · 879 Bytes
/
index.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>
<head>
<meta charset="utf-8">
<title>定制化表单控件</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="renderer" content="webkit">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link href="css/datatable.min.css" type="text/css" rel="stylesheet">
<script type="text/javascript" src="js/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="js/datatable.js"></script>
</head>
<body>
<div class="datatable-container" id="myDataTable">
<table class="datatable"></table>
<div class="pfooter"></div>
<div class="clear"></div>
</div>
<script type="text/javascript" defer async>
var dt = new DataTable($("#myDataTable"), {
url: 'json/data.json',
pullComplete: function() {
}
});
</script>
</body>
</html>