bootstrap-table计算表格列的合计

1、html


2、js中

$("#tb_table").bootstrapTable({
    method: 'get', //请求方式
    url: '/order/orderList', //请求数据的URL
    showFooter: true,//必须
...
{
field: 'name',
title: '名称',
width: 100,
align: 'center',
valign: 'middle',
footerFormatter: function (value) { //底部合计
        var count = 0;
        for (var i in value) {
            count += value[i].name;
        }
        return '总计:'+  count;
    }
}
});

你可能感兴趣的:(bootstrap)