是否可以在 twitter bootstrap collapse 插件上打开所有块?
问问题
566 次
2 回答
1
您可能只想使用一些 jQuery,而不是使用折叠插件。
jQuery(document).ready(function(){
$('.accordion .heading').click(function() {
$(this).next().toggle('slow');
return false;
});
});
于 2012-07-19T15:25:10.393 回答
0
我相信你可以只使用“in”类来做到这一点......
<div id="collapseOne" class="accordion-body collapse **in**">
于 2012-12-05T10:23:57.160 回答