由於某種原因,我的數據沒有被填充到表中。無法在jQuery數據表中填充數據
我有一個JSON數據,我只想填充數據表。
有人可以幫助我,讓我知道我錯過了哪一個簡單的步驟?
我有版本1.9.4。
<table id="example">
<thead>
<tr><th>name</th>
<th>position</th>
<th>salary</th>
<th>start_date</th>
<th>office</th>
<th>extn</th>
</tr>
</thead>
<tbody></tbody>
</table>
$('#example').dataTable({
data: [
[
"Tiger Nixon",
"System Architect",
"$3,120",
"2011/04/25",
"Edinburgh",
"5421"
],
[
"Garrett Winters",
"Director",
"5300",
"2011/07/25",
"Edinburgh",
"8422"
]
]
});