admin
2021-01-04 aa6ef62aef83e277d4171df1d9f0803f91738216
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>首页banner</title>
<link rel="stylesheet" href="../css/index.css" type="text/css" />
 
<script type="text/javascript" src="../js/jquery-1.9.1.min.js"></script>
 
<script type="text/javascript">
    function SetWinHeight(obj) {
        var win = obj;
        if (document.getElementById) {
            if (win && !window.opera) {
                if (win.contentDocument
                        && win.contentDocument.body.offsetHeight)
                    win.height = win.contentDocument.body.offsetHeight;
                else if (win.Document && win.Document.body.scrollHeight)
                    win.height = win.Document.body.scrollHeight;
            }
        }
    }
 
    $(function() {
        $("#systemlist").find("li").click(function() {
            $("#systemlist").find("li").attr("class", "");
            $(this).attr("class", "li_a1");
        });
 
    });
</script>
</head>
 
<body>
    <div class="u2">
        <ul id="systemlist">
            <li class="li_a1"><a href="#" class="a_1" href="data">影音</a>
            </li>
            <li><a href="#" class="a_2">儿歌</a>
            </li>
            <li><a href="#" class="a_3">教育</a>
            </li>
            <li><a href="#" class="a_4">美食</a>
            </li>
        </ul>
    </div>
 
    <div class="div_quan">
        <div>
            <div class="div_0">
 
                <iframe onload="javascript:SetWinHeight(this)" src="menu.html"></iframe>
 
            </div>
 
            <div class="div_bj">
                <iframe name="content" onload="javascript:SetWinHeight(this)"
                    src="content.html"></iframe>
            </div>
        </div>
    </div>
</body>
</html>