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
<!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">
    $(window.parent.document).find("#leftmenu").load(function() {
        var main = $(window.parent.document).find("#leftmenu");
        var thisheight = $(document).height() + 30;
        main.height(thisheight);
    });
</script>
 
 
<script type="text/javascript">
    $(function() {
        $(".select").click(function() {
            $(".select").attr("class", "div_6 select");
            $(".select").find("a").attr("class", "text_uncheck");
            $(this).attr("class", "div_5 select");
            $(this).find("a").attr("class", "text_checked");
        });
    });
</script>
</head>
 
<body>
    <div class="div_0" id="content">
 
        <div class="div_4">
            <div>
                <img src="../img/nrbj.png" class="img_4" />
            </div>
            <div class="text_4">管理员管理</div>
        </div>
 
        <div class="div_6 select">
            <a href="adminUserList.action" target="content" class="text_uncheck">管理员
            </a>
        </div>
 
        <div class="div_130"></div>
 
        <div class="div_15"></div>
 
    </div>
    <script type="text/javascript">
        window.open("videoList.action", "content");
    </script>
 
</body>
</html>