数据表完全搞砸了,并没有按预期工作

时间:2016-10-05 12:10:40

标签: jquery html datatables

以下是数据表的UI屏幕截图。

enter image description here

我真的不知道自己做错了什么。有人可以指出我正在做的错误。此处附带的代码与不同的文件分开。我无法弄清楚我在做什么错误。

   <head>
    <script>
    $(function(){
        $(".example").dataTable();

      });
    </script>

    </head>

<body>
    <div class="roles_table" >
                    <table class="example" id="mytable">
                       <thead>
                        <tr>
                            <th>Roles</th>
                            <th>Action</th>
                        </tr>
                       </thead> 
                       <tbody>
                  <?php foreach($resultRoles as $r) { ?>
                        <tr>
                            <td><?php echo $r->cptv_role; ?></td>
                            <td></td>  
                        </tr>
                  <?php } ?>     
                       </tbody>
                    </table>  

      </div>

    <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
    <script src="//cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js"></script>
    <script src="<?php echo base_url(); ?>assets/js/index_admin_db.js"></script>

    </body>

0 个答案:

没有答案