在Bootstrap 4中,要使表格列可排序,可以借助第三方插件进行实现。以下是一种常见的做法:
<head>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.18.3/bootstrap-table.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.18.3/bootstrap-table.min.js"></script>
</head>
data-sortable="true"
属性。<table id="myTable" class="table">
<thead>
<tr>
<th data-sortable="true">列1</th>
<th data-sortable="true">列2</th>
<th data-sortable="true">列3</th>
</tr>
</thead>
<tbody>
<tr>
<td>值1</td>
<td>值2</td>
<td>值3</td>
</tr>
<tr>
<td>值4</td>
<td>值5</td>
<td>值6</td>
</tr>
<!-- 其他行... -->
</tbody>
</table>
<script>
$(document).ready(function() {
$('#myTable').bootstrapTable({
// 可选配置项
sortable: true // 启用排序
});
});
</script>
现在,表格的每一列都可以点击进行升序和降序的排序。这样用户就可以根据需要按照某一列的值来对表格进行排序了。
腾讯云相关产品和产品介绍链接:
领取专属 10元无门槛券
手把手带您无忧上云