下面是一个使用 Bootstrap 创建表格的简单示例。请确保在你的项目中引入了 Bootstrap 的 CSS 文件。
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <title>Bootstrap Table Example</title>
    <!-- 引入 Bootstrap CSS -->
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/css/bootstrap.min.css">
</head>
<body>

<div class="container mt-5">
    <h1>Bootstrap Table Example</h1>
    
    <!-- Bootstrap 表格 -->
    <table class="table">
        <thead>
            <tr>
                <th scope="col">#</th>
                <th scope="col">First Name</th>
                <th scope="col">Last Name</th>
                <th scope="col">Username</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <th scope="row">1</th>
                <td>John</td>
                <td>Doe</td>
                <td>@john.doe</td>
            </tr>
            <tr>
                <th scope="row">2</th>
                <td>Jane</td>
                <td>Smith</td>
                <td>@jane.smith</td>
            </tr>
            <!-- 可以添加更多的行 -->
        </tbody>
    </table>
</div>

<!-- 引入 Bootstrap JS 和 Popper.js(注意:需要先引入 Popper.js) -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.min.js"></script>

</body>
</html>

在这个例子中,我们使用了 table 类来创建 Bootstrap 表格,并使用 thead 和 tbody 元素来定义表头和表格体。你可以根据需要添加更多的表格行和列。这只是一个简单的起点,你可以根据实际需求进行更多的定制。


转载请注明出处:http://www.pingtaimeng.com/article/detail/12603/Bootstrap