$('#tb').bootstrapTable({ url: ActionUrl + 'GetMenuList', toolbar: '#toolbar', sidePagination: 'client', pagination: false, treeView: true, treeId: "Id", treeField: "Name", treeRootLevel: 1, clickToSelect: true,//collapseIcon: "glyphicon glyphicon-triangle-right",//折叠样式 //expandIcon: "glyphicon glyphicon-triangle-bottom"//展开样式 });
treeView:true表示启用树表格模式;
treeId:'Id'表示每一行tree的id;
treeField:'Name'表示要对那一列进行展开;
treeRootLevel:1表示树根的级别。