heehehe / web-develop-snippet

웹 개발 관련 기록
0 stars 0 forks source link

[html] datatables 통한 interactive한 table 구성 #4

Open heehehe opened 1 year ago

heehehe commented 1 year ago

https://datatables.net/

<head>
    <script src="http://code.jquery.com/jquery-latest.js"></script>
    <script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.13.1/js/jquery.dataTables.js"></script>
    <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.13.1/css/jquery.dataTables.css">
</head>
<body>
    <table id="data-tables">
    <thead>
        <tr>
            <th>Column 1</th>
            <th>Column 2</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Row 1 Data 1</td>
            <td>Row 1 Data 2</td>
        </tr>
        <tr>
            <td>Row 2 Data 1</td>
            <td>Row 2 Data 2</td>
        </tr>
    </tbody>
</table>
</body>
<script type="text/javascript">
    let table = new DataTable('#data-table', {
        // options
    });
</script>