如何指定datatables jQuery插件中的列数

时间:2015-11-10 12:17:42

标签: javascript jquery datatables

我下载了datatables jquery插件,我试图从html源代码中将列数从默认的六个Default减少到只有四个Edited to 4。执行此操作后,当我重新加载页面时,它返回了一个错误:enter image description here。我该怎么解决这个???

我已经检查过datatables网站,但我真的不明白如何解决这个问题。我是jQuery的新手,这是我第一次使用datatables插件。

2 个答案:

答案 0 :(得分:1)

您的代码中的问题是您缺少< td> (第248行)。

<tr>
  <td>Timothy Mooney</td>
  <td>here is the error</td>
  <td>37</td>
  <td>2008/12/11</td>
</tr>

这是一个有效的fiddle

答案 1 :(得分:0)

您应该检查数据表文档:https://www.datatables.net/manual/tech-notes/4

它在那里解释了

DataTables警告:table id = {id} - 请求的未知参数&#39; {parameter}&#39;对于行{row-index},列{column-index}`

{id}将替换为触发错误的表的DOM ID {parameter}是DataTables请求的数据参数的名称

{row-index}是触发错误的行的DataTables内部行索引(row()。index())。

{column-index}是已触发错误的列的列数据索引(column()。index())。