jquery table的获取返回数据和增加序号的方法

jquery table的获取返回数据和增加序号的方法

var opt = {
        "fnDrawCallback" : function(oSettings) {

            //打印服务器返回的数据
            var json=jQuery.parseJSON(oSettings.jqXHR.responseText);//获取后台方式 直接可以拿到json 之后进行处理
            console.info(json);

            //增加一行显示序号

            var api = this.api();
            var startIndex = api.context[0]._iDisplayStart;
            api.column(0).nodes().each(function(cell, i) {
                cell.innerHTML = startIndex + i + 1;
            });
        }

}

你可能感兴趣的:(Html/Js/CSS)