我在网上唯一能找到的方法就是在这里,我仍然很困惑,无法弄清楚。
我基本上有一个基于 javascript 的表,我希望一些字段包含带有图像或简单字形图标的链接。
例如 fields sheet1
, sheet2
,sheet3
我想包含 PDF 图标的图像或字形,因为它们是 PDF 等等,它们将链接到实际文件。
我找到的大多数关于如何做到这一点的文章都是使用静态表的,因为我的是动态的,我很难找到这方面的信息。
我只是不知道从哪里开始,任何可以为我指明正确方向的想法都会很棒。
jQuery/引导程序
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
$('#table-javascript').bootstrapTable({
method: 'get',
url: 'bootstrap_database.php',
height: 600,
cache: false,
striped: true,
pagination: true,
search: true,
pageSize: 20,
pageList: [20, 40, 60, 100, 200],
minimumCountColumns: 2,
clickToSelect: true,
columns: [{
field: 'title',
title: 'Title',
align: 'center',
sortable: true
},{
field: 'audio',
title: 'Audio',
align: 'center',
sortable: true
},{
field: 'sheet1',
title: 'Sheet 1',
align: 'center',
sortable: true
},{
field: 'sheet2',
title: 'Sheet 2',
align: 'center',
sortable: true
},{
field: 'sheet3',
title: 'Sheet 3',
align: 'center',
sortable: true
},{
field: 'lyrics',
title: 'Lyrics',
align: 'center',
sortable: true
},{
field: 'sheet1notes',
title: 'Notes 1',
align: 'center',
sortable: true
},{
field: 'sheet2notes',
title: 'Notes 2',
align: 'center',
sortable: true
},{
field: 'sheet3notes',
title: 'Notes 3',
align: 'center',
sortable: true
}]
});
});
HTML
<div class="container">
<section>
<div class="row">
<h1>Music</h1>
<table id="table-javascript" class="table"></table>
</div>
</section>
</div>