使用ajax jquery填充数据时,分页和搜索框不会显示在bootstarp数据表中

时间:2017-04-25 04:43:53

标签: php jquery ajax datatable

当我使用ajax jquery在bootstrap数据表中显示数据时,不会显示分页和搜索框。如何解决此问题

我的html示例代码在这里。

 <div class="row" style="margin-top: 2em;">
     <div class="panel panel-white">
       <div class="panel-heading clearfix">

       </div>
       <div class="panel-body">
           <div id="live_data" >
             //data table display here                         
           </div>
       </div>
    </div>

我的ajax文件代码在这里

    <?php

    $output='';     
    $output.='  <div class="table-responsive">
                   <table id="example" class="table table-striped table-
                     bordered" cellspacing="0" width="100%">
    <thead>
        <tr>
            <th>Name</th>
            <th>Position</th>
            <th>Office</th>
            <th>Age</th>
            <th>Start date</th>
            <th>Salary</th>
        </tr>
    </thead>
    <tfoot>
        <tr>
            <th>Name</th>
            <th>Position</th>
            <th>Office</th>
            <th>Age</th>
            <th>Start date</th>
            <th>Salary</th>
        </tr>
    </tfoot>
    <tbody>
        <tr>
            <td>Tiger Nixon</td>
            <td>System Architect</td>
            <td>Edinburgh</td>
            <td>61</td>
            <td>2011/04/25</td>
            <td>$320,800</td>
        </tr>
        <tr>
            <td>Garrett Winters</td>
            <td>Accountant</td>
            <td>Tokyo</td>
            <td>63</td>
            <td>2011/07/25</td>
            <td>$170,750</td>
        </tr>
        <tr>
            <td>Ashton Cox</td>
            <td>Junior Technical Author</td>
            <td>San Francisco</td>
            <td>66</td>
            <td>2009/01/12</td>
            <td>$86,000</td>
        </tr>                                                        
    </tbody>
</table>
</div>';
echo $output;
?>

我的jquery函数在这里

 getcamera();
        function getcamera(){
            $.ajax({
                type:"POST",
                url:'../ajaxfiles/ajax_getcamera.php',
                success:function(data){
                    $('#live_data').html(data);

                }
            });
        }


This above code is work properly but search box and pagination is not display

那么如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

 `getcamera();
    function getcamera(){
        $.ajax({
            type:"POST",
            url:'../ajaxfiles/ajax_getcamera.php',
            success:function(data){
                $('#live_data').html(data);
                 $('#example').DataTable();// Add this line.
            }
        });
    }`

以上代码可行。这不是最好的解决方案。 对于良好的ajax实现,您可以看到示例用法  https://datatables.net/examples/ajax/simple.htmlhttps://datatables.net/examples/server_side/simple.html