我刚刚开始使用数据表,我正在使用数据表文档中的这个示例,但我无法显示数据。
这是.html file
:
<html>
<head>
<title>data</title>
<script href="https://cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js"></script>
<script href="https://code.jquery.com/jquery-1.12.4.js"></script>
</head>
<body>
<table id="example" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Extn.</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Extn.</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</tfoot>
</table>
<script type="text/javascript">
$(document).ready(function() {
$('#example').DataTable( {
"ajax": 'arrays.txt'
} );
} );
</script>
</body>
</html>
这是arrays.txt
文件:
{
"data": [
[
"Tiger Nixon",
"System Architect",
"Edinburgh",
"5421",
"2011/04/25",
"$320,800"
]
]
}
问题是数据表中没有数据显示。
答案 0 :(得分:0)
您要在datatable
之前导入jquery
。
由于datatable
需要jQuery
,您必须先加载jQuery
。
此外,您永远不应该在头上导入脚本。在脚本标记之前将它放在body标记的末尾。