首页 > 代码库 > Bootstrap Table学习笔记

Bootstrap Table学习笔记

资料: 官网   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学习笔记