bootstrap table collapse只允许一次打开

时间:2017-05-09 06:57:37

标签: jquery twitter-bootstrap

我有一张桌子,折叠的项目,我想一次只允许一个,例如http://jsfiddle.net/s4je5b0y/,但我无法找到如何为一个表做。 我看到有一个类数据父,但我不能在表中使用它,不知道为什么。 感谢。

我的代码:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<table class='table table-bordered table-condensed' style='border-collapse:collapse;background-color:white;'>
					<thead>
						<tr>
							<th>a</th>
							<th>b</th>
							<th>c</th>
						</tr>
					</thead>
					<tbody>
						<tr  id='open0' data-target='#r0' class='accordion-toggle' data-toggle='collapse'>
							<td>0</td>
							<td></td>
							<td>2</td>
						</tr>
						<tr style='background-color:#e5e8e7;'>
							<td colspan='5' class='hiddenRow'>
								<div class='collapse ' id='r0'>
									asd
								</div>
							</td>
						</tr>
						<tr  id='open1' data-target='#r1' class='accordion-toggle' data-toggle='collapse'>
							<td>0</td>
							<td></td>
							<td>2</td>
						</tr>
						<tr style='background-color:#e5e8e7;'>
							<td colspan='5' class='hiddenRow'>
								<div class='collapse ' id='r1'>
									asd
								</div>
							</td>
						</tr>
						<tr  id='open1' data-target='#r2' class='accordion-toggle' data-toggle='collapse'>
							<td>0</td>
							<td></td>
							<td>2</td>
						</tr>
						<tr style='background-color:#e5e8e7;'>
							<td colspan='5' class='hiddenRow'>
								<div class='collapse ' id='r2'>
									asd
								</div>
							</td>
						</tr>
					</tbody>
				</table>

1 个答案:

答案 0 :(得分:0)

从代码中删除data-parent属性,它将起作用,请参阅此内容 http://jsfiddle.net/s4je5b0y/1/

<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
  <div class="panel panel-default">
    <div class="panel-heading" role="tab" id="headingOne">
      <h4 class="panel-title">
        <a role="button" data-toggle="collapse" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
          Collapsible Group Item #1
        </a>
      </h4>
    </div>
    <div id="collapseOne" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
      <div class="panel-body">
        Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
      </div>
    </div>
  </div>
  <div class="panel panel-default">
    <div class="panel-heading" role="tab" id="headingTwo">
      <h4 class="panel-title">
        <a class="collapsed" role="button" data-toggle="collapse" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
          Collapsible Group Item #2
        </a>
      </h4>
    </div>
    <div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo">
      <div class="panel-body">
        Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
      </div>
    </div>
  </div>
  <div class="panel panel-default">
    <div class="panel-heading" role="tab" id="headingThree">
      <h4 class="panel-title">
        <a class="collapsed" role="button" data-toggle="collapse" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
          Collapsible Group Item #3
        </a>
      </h4>
    </div>
    <div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
      <div class="panel-body">
        Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
      </div>
    </div>
  </div>
</div>