我为一个页面添加了一个数据表,但它不应该获得数据表格式
<script src="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.10.12/js/dataTables.bootstrap.min.js"></script>
<table class="example3" id="example1">
<tr>
<td></td>
<td></td>
</tr>
</table>
<script>
$(document).ready(function() {
$('.example3').DataTable();
alert('1234567890');
} );
</script>
我收到这样的错误,我检查了类和id类 他们都来自数据库。如果我删除数据,我也没有得到值。
TypeError:c未定义
...ldren("th, td").each(function(a,b){var c=o.aoColumns[a];if(c.mData===a){var d=s(...
请告诉我错误的位置,因为其他项目中使用的代码相同。
答案 0 :(得分:0)
您的表格必须具有正确的结构,请参阅Installation - HTML。
<table class="example3" id="example1">
<thead>
<tr>
<th>Heading 1</th>
<th>Heading 2</th>
</tr>
</thead>
</table>