我是bootstrap的新手,只是尝试复制几个将数据加载到引导表中的示例,但我的数据没有显示出来。这是来自jsfiddle的html
pygame.draw.image(**coordinatesX**, **coordinatesY**, **imagefile.jpg**)
这是javascript:
<table class="table" id="table">
<thead>
<tr>
<th data-field="id">Item ID</th>
<th data-field="name">Item Name</th>
<th data-field="price">Item Price</th>
</tr>
</thead>
</table>
标题显示正常,但数据没有。 Here是jsFiddle的链接。
答案 0 :(得分:0)
bootstrapTable没有自带引导程序。你需要加入它。
https://jsfiddle.net/9g7c34rb/1/
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.11.1/bootstrap-table.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.11.1/bootstrap-table.min.js"></script>
<!-- Latest compiled and minified Locales -->
<script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.11.1/locale/bootstrap-table-zh-CN.min.js"></script>