Bootstrap Table学习笔记

资料: 官网   2017.7.10javascript

入门实例css

<!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内html

$(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  请参看Documenthtml5

PS:阅读Bootstrap Table Documentjava

上面的HTML <table id="table"></table> ,Bootstrap Table会将其绚烂成tablejquery

和bootstrap Table Document的对应关系,bootstrap

表示bootstrapTable插件中的classes会被转成Attribute(属性),字面值data-classes, 关于data-[xxx]语法,请参考bootstrap的data-api用法.api

相关文章
相关标签/搜索