溫馨提示×

Bootstrap中Table detailView和detailFilter怎么用

小億
137
2023-10-22 07:29:29
欄目: 編程語言

在Bootstrap中,可以使用Table detailView和detailFilter來展示和過濾表格的詳細(xì)信息。

  1. Table detailView(表格詳細(xì)視圖):通過點(diǎn)擊表格的某一行,展示該行的詳細(xì)信息。

要使用Table detailView,首先需要在表格中添加一個(gè)可展示詳細(xì)信息的列。例如,可以在每一行的最后一列中添加一個(gè)“詳情”按鈕,點(diǎn)擊該按鈕時(shí)展示該行的詳細(xì)信息。

<table class="table">
  <thead>
    <tr>
      <th>#</th>
      <th>名稱</th>
      <th>詳情</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>1</td>
      <td>產(chǎn)品A</td>
      <td><button class="btn btn-primary" data-toggle="modal" data-target="#detailModal">詳情</button></td>
    </tr>
    <tr>
      <td>2</td>
      <td>產(chǎn)品B</td>
      <td><button class="btn btn-primary" data-toggle="modal" data-target="#detailModal">詳情</button></td>
    </tr>
  </tbody>
</table>

然后,在頁面的底部添加一個(gè)模態(tài)框,用于展示詳細(xì)信息。

<div class="modal fade" id="detailModal" tabindex="-1" aria-labelledby="detailModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" id="detailModalLabel">產(chǎn)品詳情</h5>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">&times;</span>
        </button>
      </div>
      <div class="modal-body">
        <p>產(chǎn)品詳細(xì)信息...</p>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-dismiss="modal">關(guān)閉</button>
      </div>
    </div>
  </div>
</div>
  1. Table detailFilter(表格詳細(xì)過濾器):通過輸入關(guān)鍵字,篩選匹配的表格行。

要使用Table detailFilter,可以在表格上方添加一個(gè)輸入框,通過輸入關(guān)鍵字來實(shí)現(xiàn)表格的過濾。

<input type="text" id="filterInput" class="form-control" placeholder="輸入關(guān)鍵字進(jìn)行過濾">

<table class="table">
  <thead>
    <tr>
      <th>#</th>
      <th>名稱</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>1</td>
      <td>產(chǎn)品A</td>
    </tr>
    <tr>
      <td>2</td>
      <td>產(chǎn)品B</td>
    </tr>
  </tbody>
</table>

<script>
  $(function() {
    $('#filterInput').on('keyup', function() {
      var value = $(this).val().toLowerCase();
      $('table tbody tr').filter(function() {
        $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
      });
    });
  });
</script>

以上代碼中,使用jQuery監(jiān)聽輸入框的鍵盤事件,當(dāng)輸入框的值改變時(shí),遍歷表格的每一行,根據(jù)行中的文本內(nèi)容是否包含輸入框的值來決定是否顯示該行。

希望以上回答對您有幫助!

0