您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“Bootstrap中table的使用方法”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Bootstrap中table的使用方法”這篇文章吧。
|引入CSS文件
<link rel="stylesheet" href="bootstrap.min.css"> <link rel="stylesheet" href="bootstrap-table.css">
|引入相關庫
我們需要引入Jquery庫、bootstrap庫、以及bootstrap-table.js文件
<script src="jquery.min.js"></script> <script src="bootstrap.min.js"></script> <script src="bootstrap-table.js"></script> <-- put your locale files after bootstrap-table.js --> <script src="bootstrap-table-zh-CN.js"></script>
|啟用Bootstrap Table插件:
官方文檔中給出了我們有兩種那個方式來啟用bootstrap-table插件:
1、通過data屬性的方式:
<table data-toggle="table"> <thead> <tr> <th>Item ID</th> <th>Item Name</th> <th>Item Price</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>Item 1</td> <td>$1</td> </tr> <tr> <td>2</td> <td>Item 2</td> <td>$2</td> </tr> </tbody> </table>
2、通過js的方式:
//只需要HTML中寫下table標簽,并設置id <table id="table"></table>
$('#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' }] });
也可以通過url獲取數據
$('#table').bootstrapTable({ url: 'data1.json', columns: [{ field: 'id', //與返回值的JSON數據的key值對應 title: 'Item ID' //列名 }, { field: 'name', title: 'Item Name' }, { field: 'price', title: 'Item Price' }, ] });
以上是“Bootstrap中table的使用方法”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。