我是靠谱客的博主 重要山水,这篇文章主要介绍bootstrap table方法之expandRow-collapseRow展开或关闭当前行数据,现在分享给大家,希望可以做个参考。

本文实例为大家分享了bootstrap table展开或关闭当前行数据的具体代码,供大家参考,具体内容如下

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html> <html> <head> <title>expandRow-collapseRow</title> <meta charset="utf-8"> <link rel="stylesheet" href="../assets/bootstrap/css/bootstrap.min.css" rel="external nofollow" > <link rel="stylesheet" href="../assets/bootstrap-table/src/bootstrap-table.css" rel="external nofollow" > <link rel="stylesheet" href="../assets/examples.css" rel="external nofollow" > <script src="../assets/jquery.min.js"></script> <script src="../assets/bootstrap/js/bootstrap.min.js"></script> <script src="../assets/bootstrap-table/src/bootstrap-table.js"></script> <script src="../ga.js"></script> </head> <body> <div class="container"> <h1>expandRow-collapseRow</h1> <p></p> <div id="toolbar"> <button id="button" class="btn btn-default">expandRow</button> <button id="button2" class="btn btn-default">collapseRow</button> </div> <table id="table" data-toggle="table" data-toolbar="#toolbar" data-height="460" data-detail-view="true" data-detail-formatter="detailFormatter" data-url="../json/data1.json"> <thead> <tr> <th data-field="id">ID</th> <th data-field="name">Item Name</th> <th data-field="price">Item Price</th> </tr> </thead> </table> </div> <script> var $table = $('#table'), $button = $('#button'), $button2 = $('#button2'); $(function () { $button.click(function () { $table.bootstrapTable('expandRow', 1); }); $button2.click(function () { $table.bootstrapTable('collapseRow', 1); }); }); function detailFormatter(index, row) { var html = []; $.each(row, function (key, value) { html.push('<p><b>' + key + ':</b> ' + value + '</p>'); }); return html.join(''); } </script> </body> </html>

官方演示地址

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

最后

以上就是重要山水最近收集整理的关于bootstrap table方法之expandRow-collapseRow展开或关闭当前行数据的全部内容,更多相关bootstrap内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(150)

评论列表共有 0 条评论

立即
投稿
返回
顶部