DataTable额外传参数的方法

在DataTable中增加如下参数:
fnServerParams: function (aoData) {
            aoData.push({name: "onTryType", value: $("#onTryType").val()}, {name: "status", value: $("#status").val()});
        },
这样就会把你想要传的参数传过去

你可能感兴趣的:(dataTable)