1. 程式人生 > >Bootstrap Table學習筆記

Bootstrap Table學習筆記

pts mpat doc 官網 htm charset body ble meta

資料: 官網 2017.7.10

入門實例

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Bootstrap Table</title>
<link href="Styles/css/bootstrap.min.css" rel="stylesheet" /> <link href="Styles/css/bootstrap-table.min.css" rel="stylesheet" /> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn‘t work if you view the page via file://
--> <!--[if lt IE 9]> <script src="https://cdn.bootcss.com/html5shiv/3.7.3/html5shiv.min.js"></script> <script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script> <![endif]--> <script src="Scripts/Core/jquery-1.12.4.min.js"
type="text/javascript"></script> <script src="Scripts/Core/bootstrap.min.js"></script> <script src="Scripts/Extensions/bootstrap-table.js"></script> <script src="Scripts/Extensions/bootstrap-table-locale-all.js"></script> <script src="Scripts/Main.js"></script> </head> <body> <table id="table"></table> </body> </html

通過JavaScript激活Bootstrap Table, coding在Main.js內

$(function () {
    $(‘#table‘).bootstrapTable({
        columns: [{
            field: ‘id‘,
            title: ‘Item ID‘
        }, {
            field: ‘name‘,
            title: ‘Item Name‘
        }, {
            field: ‘price‘,
            title: ‘Item Price‘
        }],
        data: [{
            id: 1,
            name: ‘Item 1‘,
            price: ‘$1‘
        }, {
            id: 2,
            name: ‘Item 2‘,
            price: ‘$2‘
        }]
    })
})

內置方法:bootstrapTable(), 內置屬性: columns, data 請參看Document

Bootstrap Table學習筆記