這篇文章將為大家詳細(xì)講解有關(guān)Bootstrap中Table的使用示例,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
專注于為中小企業(yè)提供成都做網(wǎng)站、成都網(wǎng)站建設(shè)服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)淄博免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了成百上千企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。
一、Bootstrap Table相關(guān)整理
基于 Bootstrap 的 jQuery 表格插件,通過簡單的設(shè)置,就可以擁有強(qiáng)大的單選、多選、排序、分頁,以及編輯、導(dǎo)出、過濾(擴(kuò)展)等等的功能。
1.官網(wǎng)地址:
http://bootstrap-table.wenzhixin.net.cn/zh-cn/ Git源代碼地址:https://github.com/wenzhixin/bootstrap-table
基礎(chǔ)簡介:
http://bootstrap-table.wenzhixin.net.cn/zh-cn/getting-started/
使用示例:
http://bootstrap-table.wenzhixin.net.cn/zh-cn/examples/
API文檔:
http://bootstrap-table.wenzhixin.net.cn/zh-cn/documentation/
Bootstrap Table的有點(diǎn)使用簡單,美觀整潔,支持CardView等特點(diǎn)
二、簡單使用實例
基礎(chǔ)引用
<link href="~/lib/bootstrap-table/dist/bootstrap-table.css" rel="external nofollow" rel="stylesheet" /> <script src="~/lib/bootstrap-table/dist/bootstrap-table.js"></script> <script src="~/lib/bootstrap-table/src/locale/bootstrap-table-zh-CN.js"></script>
1.data-toggle="table" 無需JavaScript啟用bootstrap table
<p>通過Data屬性的方式,無需編寫JavaScript啟用bootstrap table, 設(shè)置 data-toggle="table" 即可</p> <div class="alert alert-danger"> <p>1.這種方式不太常用,因為分頁不方便</p> </div> <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.使用data-url指定遠(yuǎn)程數(shù)據(jù),特別說明,在使用遠(yuǎn)程數(shù)據(jù)的時候,在ajax請求期間,表格內(nèi)容顯示加載中...,
<p>可以通過設(shè)置遠(yuǎn)程url 如:data-url="data1.json" ,自動加載遠(yuǎn)程數(shù)據(jù)</p> <div class="alert alert-danger"> <p>1.這種方式對于分頁不太方便</p> <p>2.BootstrapTable 對于字段中為空,自動替換成'-'</p> </div> <table data-toggle="table" data-url="@Url.Action("GetStudent","DataOne")"> <thead> <tr> <th data-field="sno">編號</th> <th data-field="sname">姓名</th> <th data-field="ssex">性別</th> <th data-field="sbirthday">生日</th> <th data-field="class">課程編號</th> </tr> </thead> </table>
3.data-classes 屬性指定表格的樣式,
特別說明:表頭和屬性的指定方式有兩種,一種DOM中定義,一種在Js的參數(shù)中定義
<table id="table1" data-classes="table table-hover table-condensed"></table> [javascript] view plain copy print? //data-classes 可以設(shè)置樣式 /* * table-condensed 設(shè)置內(nèi)容框濃縮 */ $('#table1').bootstrapTable({ columns: [ { field: 'sno', title: '學(xué)生編號' }, { field: 'sname', title: '學(xué)生姓名' }, { field: 'ssex', title: '性別' }, { field: 'sbirthday', title: '生日' }, { field: 'class', title: '課程編號' }, ], url:'@Url.Action("GetStudent","DataOne")' });
table-condensed 表格緊湊樣式顯示如下:
關(guān)于“Bootstrap中Table的使用示例”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
網(wǎng)站名稱:Bootstrap中Table的使用示例
文章分享:http://jinyejixie.com/article38/pggosp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供自適應(yīng)網(wǎng)站、ChatGPT、網(wǎng)站策劃、營銷型網(wǎng)站建設(shè)、動態(tài)網(wǎng)站、標(biāo)簽優(yōu)化
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)