第一次使用Bootstrap-table这个表格插件,记录一下使用过程中遇到的问题。
|引入CSS文件
<link rel="stylesheet" href="bootstrap.min.css"> <link rel="stylesheet" href="bootstrap-table.css">
|引入相关库
我们需要引入Jquery库、bootstrap库、以及bootstrap-table.js文件
<script src="/UploadFiles/2021-04-02/jquery.min.js">|启用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
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com
暂无“第一次记录Bootstrap table学习笔记(1)”评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。