在搜索结果页面上,我有一个使用 bootstrap-table 插件 ( http://bootstrap-table.wenzhixin.net.cn/ ) 的表格,用于引导从 json 文件中提取信息以自动填写单元格。该表如下所示:
<table data-toggle="table" data-striped="true" data-classes="table table-hover" data-url="certs2.json">
<thead>
<tr>
<th style="width:40%" data-sortable="true" data-field="DateReturned">Date Returned</th>
<th style="width:40%" data-sortable="true" data-field="CertNum">Certificate Number</th>
<th style="width:20%" class="text-center">Actions</th>
</tr>
</thead>
</table>
在操作列中,我想列出 a <button>
,但由于引导表的单元格是从 json 文件中自动填充的,因此<table>
不会采用 a<tbody>
并且我无法在单元格中插入任何未进入的内容从那个json文件。
我需要一种方法来<button>
为 Actions 列中的每个单元格添加一个,根据 Certificate Number 列的结果,每个单元格都有不同的链接。这可能吗?