<!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>© 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