在 jQuery Mobile 中,表格(Table)是一种用于显示数据的常见 UI 元素。jQuery Mobile 提供了一些样式和功能,以便在移动设备上创建响应式的表格。以下是一个简单的例子,演示了如何创建和使用 jQuery Mobile 表格:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>jQuery Mobile Table</title>
    <link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
    <script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
    <script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>

<!-- Table -->
<div data-role="page" id="home">
    <div data-role="header">
        <h1>Employee List</h1>
    </div>

    <div data-role="content">
        <table data-role="table" id="employeeTable" data-mode="reflow" class="ui-responsive">
            <thead>
                <tr>
                    <th data-priority="1">Name</th>
                    <th data-priority="2">Position</th>
                    <th data-priority="3">Location</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>John Doe</td>
                    <td>Developer</td>
                    <td>New York</td>
                </tr>
                <tr>
                    <td>Jane Smith</td>
                    <td>Designer</td>
                    <td>San Francisco</td>
                </tr>
                <tr>
                    <td>Bob Johnson</td>
                    <td>Manager</td>
                    <td>Chicago</td>
                </tr>
            </tbody>
        </table>
    </div>

    <div data-role="footer">
        <h4>&copy; 2023 My App</h4>
    </div>
</div>

</body>
</html>

在这个例子中,我们使用了 data-role="table" 属性来标记表格,并设置了一些其他属性来定义表格的样式和行为:

  •  data-mode="reflow":指定表格在小屏幕上以流动模式显示,以确保在移动设备上具有更好的响应性。

  •  class="ui-responsive":添加响应式样式,以使表格在不同屏幕尺寸上呈现不同的布局。


表头中的每个 <th> 元素都有一个 data-priority 属性,用于指定列的优先级。这有助于在小屏幕上进行布局时确定哪些列应该优先显示。




转载请注明出处:http://www.zyzy.cn/article/detail/14454/jQuery Mobile