Jquery Firebug中的Datatables警告

Jquery Firebug中的Datatables警告,jquery,error-handling,firebug,datatables,Jquery,Error Handling,Firebug,Datatables,所以我有一个由用户输入填充的数据表。当我进入屏幕时(在我提交任何东西之前),我不会在firebug中抛出任何警告。在我将某些内容输入表格并提交之后。我自动返回到同一页,只有表中有我提交的信息。在这一点上是当我得到错误。这是: DataTables warning (table id = 'table'): Unexpected number of TD elements. Expected 5 and got 6. DataTables does not support rowspan / co

所以我有一个由用户输入填充的数据表。当我进入屏幕时(在我提交任何东西之前),我不会在firebug中抛出任何警告。在我将某些内容输入表格并提交之后。我自动返回到同一页,只有表中有我提交的信息。在这一点上是当我得到错误。这是:

DataTables warning (table id = 'table'): Unexpected number of TD elements. Expected 5
and got 6. DataTables does not support rowspan / colspan in the table body, and there 
must be one cell for each row/column combination.
看起来很明显,但我的桌子上没有rowspan或colspan。所以我不知道问题出在哪里。此外,以下是我对datatable的设置:

 var table1 = {};
 table1 = O_LANGUAGE = {sEmptyTable: "There is nothing here."};

        $(document).ready(function() {
      var $table= $("#table");
    $table.dataTable({
      "aaSorting": [ [0,'desc'] ], "oLanguage" : bsFaReq.O_LANGUAGE, "bLengthChange": false, "bFilter": false, "bAutoWidth": false, "bInfo": false, "bPaginate": false
      });

好的,所以它运行正常,但在修复此警告之前,我无法将其发布,非常感谢任何帮助,提前谢谢。

我认为您必须调试第一个警告,即“预期为5,获得6”这意味着您正在尝试添加6个td,而上面的行只有5个。

这是因为表中有5列,但数据是为6发送的