Jquery DataTables 下一页按钮无法点击

下面是我初始化datatables的方法,可以显示出翻页按钮,但是翻页按钮并不能使用,点击无效。。

var initProductParentTable = function () {
    var data = {
        "current": 1,
        "size": 10
    }
    $.ajax({
        url: "/server/product-parent/get-by-page",
        type: "post",
        contentType: "application/json;charset=utf-8",
        data: JSON.stringify(data),
        success: function (res) {
            if (res.code != 200) {
                $("#tips .modal-body").html(res.msg);
                $("#tips").modal("show");
                return;
            }
            var table = $("#product_parent_table").DataTable({
                "bPaginate": true, //翻页功能
                "bLengthChange": true, //改变每页显示数据数
                "bFilter": true, //过滤功能
                "bSort": false, //排序功能
                "bInfo": true,//页脚信息
                "bAutoWidth": true,//自动宽度

                "destroy": true,
                "data": res.data.records,
                "columns": [
                    {
                        data: "productCategoryPicture", width: "150px", render: function (data, type, row) {
                            return "<img style='width: 80px;height: auto;' src='" +
                                OSS_BASE_ICON_URL + row.picture + "'>";
                        }
                    },
                    {data: "productParentName", width: "150px"},
                    {
                        data: "price", width: "100px", render: function (data, type, row) {
                            return row.price / 100;
                        }
                    },
                    {data: "saleCount", width: "100px"},
                    {data: "createTime", width: "150px"},
                    {
                        data: "updateTime", width: "150px", render: function (data, type, row) {
                            if (row.updateTime == null) {
                                return "暂无最后修改日期";
                            }
                            return row.updateTime;
                        }
                    },
                    {
                        data: "id", width: "120px", render: function (data, type, row) {
                            return "<button type='button' class='btn btn-success' onclick='productCategoryDetail(\"" + row.id + "\",\"" + row.productCategoryName + "\")'>编辑</button>";
                        }
                    }
                ]
            })
        }
    })
}
阅读 3k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题