码迷,mamicode.com
首页 > 其他好文 > 详细

bootstrap table简洁扁平的表格

时间:2016-01-18 12:09:47      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

使用方法

1、在html页面的head标签中引入Bootstrap库(假如你的项目还没使用)和bootstrap-table.css。

<link rel="stylesheet" href="bootstrap.min.css">
        <link rel="stylesheet" href="bootstrap-table.css">

2、在head标签或者在body标签闭合前(比较推荐)引入jQuery库和Bootstrap库(假如你的项目还没使用)和bootstrap-table.js。

<script src="jquery.min.js"></script>
        <script src="bootstrap.min.js"></script>
        <script src="bootstrap-table.js"></script>

3、指定数据源,这里有两种方式

 1)通过data属性标签

 在一个普通的表格中设置data-toggle="table"可以在不写JavaScript的情况下启用Bootstrap Table。

<table data-toggle="table" data-url="data.json">
            <thead>
                ...    
            </thead>
        </table>

2)通过JavaScript设置数据源

通过JavaScript来启用带有id属性的Table。

$(‘#table‘).bootstrapTable({
          url: ‘data.json‘ 
        }); 

关于参数请参照官网的文档

bootstrap table简洁扁平的表格

标签:

原文地址:http://www.cnblogs.com/mfc-itblog/p/5138655.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!