我正在处理数据表,并发现很难添加新列。我已经搜索了谷歌的答案,但是这些建议似乎都不适合我。
我尝试了这个建议,但未能使用我的代码;
aoColumnDefs"
{
"aTargets":[7],
"mData": null
}
]
我创建了一个JSfiddle来显示我的代码,我确定这是显而易见的。
对不起,如果这是一个愚蠢的问题,但它正在破坏我的大脑......总是小事。
非常感谢任何帮助,
梅丽莎
答案 0 :(得分:0)
HTML:
<table id="tableCities">
<thead>
<tr>
<th>country</th>
<th>zip</th>
<th>city</th>
<th>district code</th>
<th>district description</th>
<th>actions</th>
</tr>
</thead>
<tbody></tbody>
</table>
您可以使用不同的方式定义列:
"aoColumns": [
null,
null,
null,
null,
null,
{ "mData": null }
]
或者这个:
"aoColumnDefs":[
{
"aTargets":[5],
"mData": null
}
]
这里有一些文档http://www.datatables.net/usage/columns,希望它会有帮助。