1
hao
2025-05-20 8e24c6fea30d9b179375ee2893710cdec2443b13
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
<!DOCTYPE html>
<html  xmlns="http://www.w3.org/1999/html">
<head>
    <link href="../css/jquery.treetable.theme.default.css" rel="stylesheet"
          type="text/css" />
    <link href="../css/jquery.treetable.css" rel="stylesheet" type="text/css" />
    <script src="../js/jquery-2.1.1.min.js"></script>
    <script src="../js/jquery.treetable.js"></script>
</head>
<body>
<!--头-->
<table id="example-advanced">
    <tr data-tt-id="1">
        <td>Parent</td>
        <td>title</td>
    </tr>
    <tr data-tt-id="1-1" data-tt-parent-id="1">
        <td>Child</td>
        <td>desc</td>
    </tr>
    <tr data-tt-id="2">
        <td>Parent</td>
        <td>title</td>
    </tr>
    <tr data-tt-id="2-1" data-tt-parent-id="2">
        <td>Child</td>
        <td>desc</td>
    </tr>
</table>
<script>
    $("#example-advanced").treetable({
        expandable : true
    });
</script>
<!--底部-->
</body>
</html>