数据表:如何从另一个函数获取变量值

时间:2016-09-18 07:13:18

标签: javascript datatables

我面临小问题。如何从Datatables中的另一个函数获取变量值。

我的Javascript代码:

var id = "";
var type = "";

show = function(id, type){ //id=5, type=3
        id = id;
        type = type;
}

var pTable = $("#example").DataTable({
    processing: true,
    serverSide: true,
    sort: true,
    ajax: {
        url: "/url/"+id+"/"+type,
        dataType:"json"
    },

控制台日志结果:

GET: /url///;

如何获得价值? 抱歉英文不好。

2 个答案:

答案 0 :(得分:2)

更改显示功能如下:

show = function(_id, _type){ 
    id = _id;
    type = _type;}

答案 1 :(得分:0)

我在代码后解决了我的问题:

pTable.ajax.url("/url/"+id+"/"+type).load();