共1个回答
EC
游客ecqXMk
可以使用multipleSelectRow
属性,使用ctrl+click
就可以进行多选。
<style>
.bs-checkbox {
display: none;
}
</style>
<table
id="table"
data-toggle="table"
data-show-columns="true"
data-multiple-select-row="true"
data-click-to-select="true"
data-pagination="true"
data-search="true"
data-url="https://examples.wenzhixin.net.cn/examples/bootstrap_table/data"
data-side-pagination="server">
<thead>
<tr>
<th data-field="state" data-checkbox="true"></th>
<th data-field="id" data-sortable="true">ID</th>
<th data-field="name" data-sortable="true">Item Name</th>
<th data-field="price" data-sortable="true">Item Price</th>
</tr>
</thead>
</table>
回答问题