通过bootstrapTable()填充引导表可以通过以下步骤实现:
以下是一个示例代码:
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap Table Demo</title>
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://cdn.staticfile.org/bootstrap-table/1.12.1/bootstrap-table.min.js"></script>
</head>
<body>
<div class="container">
<table id="myTable" data-toggle="table" data-url="data.json" data-pagination="true" data-search="true">
<thead>
<tr>
<th data-field="id">ID</th>
<th data-field="name">Name</th>
<th data-field="price">Price</th>
</tr>
</thead>
</table>
</div>
<script>
$(function() {
$('#myTable').bootstrapTable();
});
</script>
</body>
</html>
在上述示例中,我们使用了Bootstrap和jQuery的CDN链接,以及Bootstrap Table的CDN链接。通过设置data-url
属性,可以指定数据的来源,这里使用了一个名为data.json
的JSON文件作为数据源。表格的列通过<th>
元素定义,data-field
属性指定了对应的数据字段。
注意:以上示例中的CDN链接仅供演示使用,实际开发中建议下载相应的文件并部署到自己的服务器上。
推荐的腾讯云相关产品:腾讯云云服务器(CVM)和腾讯云对象存储(COS)。
领取专属 10元无门槛券
手把手带您无忧上云