我有一个带按钮的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文件的顺序,但是没有效果。