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
| <!DOCTYPE html>
| <html>
| <head>
| <title>CBI管理系统</title>
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
| <script src="../../js/jquery-1.7.2.min.js"></script>
| <script src="../../js/foundation-2.0.js"></script>
|
| <style type="text/css">
| body:{
| position: absolute;
| top: 0px;
| bottom: 2.25rem;
| width: 100%;
| }
|
| </style>
|
|
| <script type="text/javascript">
| var tab, content;
| var url = [
| "root/page/menu/main.html",
| "root/page/menu/platform.html",
| "root/page/menu/material.html",
| "root/page/menu/me.html"
| ];
| $(document).ready(function() {
| content = $("#content");
| tab = new auiTab({
| element:document.getElementById("footer")
| },function(ret){
| if(ret){
| content.attr("src", url[ret.index -1]);
| }
| });
| });
|
| </script>
|
| </head>
|
| <body>
|
|
| </body>
| </html>
|
|