第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

我怎樣才能折疊所有表格行

我怎樣才能折疊所有表格行

慕蓋茨4494581 2023-12-11 10:21:35
我在表內(nèi)有表行,在每行內(nèi)還有另一個(gè)嵌套表行,我的問題是我可以在嵌套表行中折疊和展開,但是當(dāng)我嘗試在主表中展開時(shí),只有第一行展開當(dāng)我啟動(dòng)程序時(shí),其余部分默認(rèn)展開,我該如何修復(fù)它。這是我的代碼tbody.collapse.in {  display: table-row-group;}.tigray {  background-color: darkcyan;}.zoba {  background-color: forestgreen;}<!-- Latest compiled and minified CSS --><link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"><!-- jQuery library --><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script><!-- Latest compiled JavaScript --><script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script><table class="table table-bordered table-sm ">  <thead class="thead-dark">    <tr>      <th></th>      <th>head1</th>      <th>head2</th>    </tr>  </thead>  <tbody>    <tr class="clickable" data-toggle="collapse" data-target="#group-of-rows-1" aria-expanded="false" aria-controls="group-of-rows-1">      <td class="tigray">title1</td>      <td class="tigray">35</td>      <td class="tigray">35</td>    </tr>  </tbody>  <tbody id="group-of-rows-1" class="collapse">    <tr class="clickable" data-toggle="collapse" data-target="#group-of-rows-2" aria-expanded="false" aria-controls="group-of-rows-2">      <td class="zoba">nested 1</td>      <td class="zoba">29</td>      <td class="zoba">29</td>      <tbody id="group-of-rows-2" class="collapse">        <tr class="table-warning">          <td>nested title1</td>          <td>13</td>          <td>13</td>        </tr>        <tr class="table-warning">          <td>nested title2</td>          <td>18</td>          <td>13</td>        </tr>        <tr class="table-warning">          <td>nested title 3</td>          <td>32</td>          <td>13</td>        </tr>      </tbody>    </tr>
查看完整描述

1 回答

?
慕村9548890

TA貢獻(xiàn)1884條經(jīng)驗(yàn) 獲得超4個(gè)贊

您不能在另一個(gè) tbody 中使用 tbody,?它不是合法的 HTML。

按照這個(gè)代碼?↓↓

<!-- Latest compiled and minified CSS -->

<link rel="stylesheet" >


<!-- jQuery library -->

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>


<!-- Latest compiled JavaScript -->

<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>



<table class="table table-bordered table-sm ">

? <thead class="thead-dark">

? ? <tr>

? ? ? <th></th>

? ? ? <th>head1</th>

? ? ? <th>head2</th>

? ? </tr>

? </thead>

? <tbody>

? ? <tr class="clickable" data-toggle="collapse" data-target=".group-of-rows-1" aria-expanded="false" aria-controls="group-of-rows-1">

? ? ? <td class="tigray">title1</td>

? ? ? <td class="tigray">35</td>

? ? ? <td class="tigray">35</td>

? ? </tr>

? </tbody>


? <tbody id="" class="collapse group-of-rows-1">

? ? <tr class="clickable" data-toggle="collapse" data-target="#group-of-rows-2" aria-expanded="false" aria-controls="group-of-rows-2">

? ? ? <td class="zoba">nested 1</td>

? ? ? <td class="zoba">29</td>

? ? ? <td class="zoba">29</td>

? ? ??

? ? </tr>

? </tbody>


? <tbody id="group-of-rows-2" class="collapse">

? ? ? <tr class="table-warning">

? ? ? ? <td>nested title1</td>

? ? ? ? <td>13</td>

? ? ? ? <td>13</td>

? ? ? </tr>

? ? ? <tr class="table-warning">

? ? ? ? <td>nested title2</td>

? ? ? ? <td>18</td>

? ? ? ? <td>13</td>

? ? ? </tr>

? ? ? <tr class="table-warning">

? ? ? ? <td>nested title 3</td>

? ? ? ? <td>32</td>

? ? ? ? <td>13</td>

? ? ? </tr>

? ? </tbody>

? <tbody id="" class="collapse group-of-rows-1">

? ? <tr class="clickable" data-toggle="collapse" data-target="#group-of-rows-3" aria-expanded="false" aria-controls="group-of-rows-3">

? ? ? <td class="zoba">nested 2</td>

? ? ? <td class="zoba">29</td>

? ? ? <td class="zoba">29</td>

? ? ??

? ? </tr>

? ? </tbody>

? <tbody id="group-of-rows-3" class="collapse">

? ? ? <tr class="table-warning">

? ? ? ? <td>nested title4</td>

? ? ? ? <td>13</td>

? ? ? ? <td>13</td>

? ? ? </tr>

? ? ? <tr class="table-warning">

? ? ? ? <td>nested title5</td>

? ? ? ? <td>18</td>

? ? ? ? <td>13</td>

? ? ? </tr>

? ? ? <tr class="table-warning">

? ? ? ? <td>nested title 6</td>

? ? ? ? <td>32</td>

? ? ? ? <td>13</td>

? ? ? </tr>

? ? </tbody>

</table>

但是,您可以在單個(gè) TABLE 元素中擁有多個(gè) TBODY 元素,因此您可以執(zhí)行以下操作:


<table>?

? <tbody>?

? ? <tr>?

? ? ? <td>...</td>?

? ? ? <td>...</td>?

? ? </tr>?

? </tbody>

? <tbody >?

? ? <tr>?

? ? ? <td>...</td>?

? ? ? <td>...</td>?

? ? </tr>?

? </tbody>

? <tbody>?

? ? <tr>?

? ? ? <td>...</td>?

? ? ? <td>...</td>?

? ? </tr>?

? </tbody>

</table>?


查看完整回答
反對(duì) 回復(fù) 2023-12-11
  • 1 回答
  • 0 關(guān)注
  • 139 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)