DataTables警告:table id = datatable - 请求的未知参数' 1'第0行

时间:2016-02-17 15:31:06

标签: codeigniter datatable

有人可以告诉我我的代码有什么问题吗?被困在这里几个小时...它总是说" DataTables警告:table id = datatable - 请求的未知参数' 1'第0行。"

这是我的代码:

<table id="datatable" class="table table-bordered table-striped dataTable">
        <thead>
            <tr>

                <th>Name</th>
                <th></th> 
            </tr>
        </thead>
        <tbody>
            <?php echo $this->session->flashdata('message'); ?>
            <?php $offset = $this->uri->segment(3, 0) + 1; ?>
            <?php foreach ($query->result() as $row): ?>
                <tr>
                    <td><?php echo $row->manufacturer_name; ?></td>


                    <?php echo "<form method='post' action='asset_management/updateForm'>";?>
                    <input type="hidden" name="manufacturer_id" value="<?php echo $row->manufacturer_id;?>"/>
                    <?php echo form_open('asset_management/updateForm');
                        echo form_submit('p_submit', 'Update', "class='btn btn-warning btn-xs'"); ?>
                        <?php echo form_close(); ?>
                    </form>

                    <a class="btn btn-danger btn-xs" onclick="javascript:deleteConfirm('<?php echo site_url('asset_management/deletemanu/' . $row->manufacturer_id); ?>');" deleteConfirm href="#">
                    <span class="glyphicon glyphicon-trash" aria-hidden="true"></span></a></th>
                </tr>
            <?php endforeach; ?>
        </tbody>
    </table>

非常感谢你!

1 个答案:

答案 0 :(得分:0)

没有。表格标题可能与不匹配。表中的td。

显示上述错误。

访问https://www.datatables.net/