溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

bootstrap table方法之expandRow-collapseRow展開或關(guān)閉當(dāng)前行數(shù)據(jù)

發(fā)布時(shí)間:2020-08-19 14:24:21 來源:腳本之家 閱讀:153 作者:黃德根 欄目:web開發(fā)

本文實(shí)例為大家分享了bootstrap table展開或關(guān)閉當(dāng)前行數(shù)據(jù)的具體代碼,供大家參考,具體內(nèi)容如下

<!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">
 <h2>expandRow-collapseRow</h2>
 <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>

官方演示地址

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI