比较常用的JS搭配Bootstrap生成生成表格~
1.定义一个表格
emm...引入css、js这些基本的就忽略了
<div class="container">
<div class="row">
<div class="col-md-12">
<table class="table table-hover " id="my_table">
<!-- 表头 -->
<thead>
<tr>
<th>送评单号</th>
<th>网名</th>
<th>真实姓名</th>
<th>项目数量</th>
<th>总费用</th>
<th>创建时间</th>
<th>操作</th>
</tr>
</thead>
<!-- tbody 表内容,使用js填充 -->
<tbody>
</tbody>
</table>
</div>
</div>
</div>
2.编写JS