david-PC\david
2018-06-12 cc7f57619fd09f68582b748a3580402717b84c50
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
<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>Aegis前端框架</title>
        <meta charset="utf-8">
        <meta http-equiv="Pragma" content="no-cache"> 
        <meta http-equiv="Cache-Control" content="no-cache"> 
        <meta http-equiv="Expires" content="0">
        <meta name="viewport" content="user-scalable=no, initial-scale=1, width=device-width, height=device-height">
        <meta name="format-detection" content="telephone=no">
        <link href="../css/main.css" rel="stylesheet">
        <script src="../js/jquery-1.7.2.min.js"></script>
        
        <script type="text/javascript">
        
            function pageTo(target) {
                $("#content").attr("src", "./" + target);
            }
            
            
            $(document).ready(function() {
                pageTo("demo.html");
            });
            
        </script>        
    </head>
 
<body>
    <div class="header">
        <div class="header-button" style="margin-left: 15%;" onclick="pageTo('home.html')">首页</div>
        <div class="header-button" onclick="pageTo('demo.html')">控件Demo</div>
        <div class="header-button" onclick="pageTo('api.html')">控件API</div>
        <div class="header-button" onclick="pageTo('knowledge.html')">框架原理</div>
        <div class="header-button" onclick="pageTo('project.html')">项目列表</div>
    </div>
 
    <div class="content">
        <iframe id="content" width="100%" height="100%" style="overflow: hidden; border: none;">
        
        </iframe>
    </div>    
</body>
</html>