Bootstrap-table 相关参数

表格参数:

 列参数

 事件:

$('#table').bootstrapTable({
    onEventName: function (arg1, arg2, ...) {
        // ...
    }
});

$('#table').on('event-name.bs.table', function (e, arg1, arg2, ...) {
    // ...
});

 方法

使用方法的语法:$('#table').bootstrapTable('method', parameter);

原文地址:https://www.cnblogs.com/bx-paper/p/13718277.html