dataTable未加载PHP引导程序

时间:2018-10-31 16:44:32

标签: jquery twitter-bootstrap-3 datatables

我有一个带按钮的index.php页面。单击按钮时,我得到的响应应该在数据表模型中。

<script src="../../js/jquery-3.0.0.min.js"></script>
<script src="../../js/bootstrap.min.js"></script>
<script src="../../js/jquery.dataTables.min.js"></script>
<script src="../../js/validate.js"></script>
<script src="../../js/jquery-ui.min.js"></script>

<link rel="stylesheet" href="../../css/bootstrap.min.css">
<link rel="stylesheet" href="../../css/jquery-ui.min.css">
$(function() {
  $('#example').DataTable({});

  //button click for getting the response 
  $('.item').click(function() {
    $.ajax({
      type: 'post',
      url: path, //loaddata.php
      data: {},
      dataType: 'html',
      success: function(data) {
        //  This div will have the example table contents which should be dataTable
        $('.response_div').html(data); 
      }
    });
  }
});

我得到的响应没有可用的dataTable效果。我更改了jquery库,css文件的顺序,但是没有效果。

库正在加载。控制台中也没有错误。 请帮我 enter image description here

0 个答案:

没有答案