0

我正在调用一个 json 脚本来填充我的表,它工作正常。我只是想只用水平分隔线来制作它,根据这个a 应该只需要添加class="table"到我的<table>但它不起作用。我必须通过我的 jQuery 代码来执行此操作吗?

jQuery

$('#table-javascript').bootstrapTable({
    method: 'get',
    url: 'bootstrap_database.php',
    height: 600,
    cache: false,
    striped: true,
    pagination: true,
    search: true,
    pageSize: 20,
    pageList: [20, 40, 60, 100, 200],
    minimumCountColumns: 2,
    clickToSelect: true,
    columns: [{
        field: 'title',
        title: 'Title',
        align: 'center',
        sortable: true
    },{
        field: 'audio',
        title: 'Audio',
        align: 'center',
        sortable: true
    },{
        field: 'sheet1',
        title: 'Sheet 1',
        align: 'center',
        sortable: true
    },{
        field: 'sheet2',
        title: 'Sheet 2',
        align: 'center',
        sortable: true
    },{
        field: 'sheet3',
        title: 'Sheet 3',
        align: 'center',
        sortable: true
    },{
        field: 'lyrics',
        title: 'Lyrics',
        align: 'center',
        sortable: true
    },{
        field: 'sheet1notes',
        title: 'Notes 1',
        align: 'center',
        sortable: true
    },{
        field: 'sheet2notes',
        title: 'Notes 2',
        align: 'center',
        sortable: true
    },{
        field: 'sheet3notes',
        title: 'Notes 3',
        align: 'center',
        sortable: true
    }]
});

HTML

<div class="container">
    <section>
        <div class="row">
            <h1>Music</h1>
            <table id="table-javascript" class="table"></table>
        </div>
    </section>
</div>
4

1 回答 1

0

您可以将 classes 选项设置为 table-no-bordered。看这个例子:http: //issues.wenzhixin.net.cn/bootstrap-table/#options/no-bordered.html

于 2015-04-16T10:26:33.503 回答