Drupal jquery选项卡集
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal jquery选项卡集相关的知识,希望对你有一定的参考价值。
Say you wanted the following 4 tabs: bodoni, helvetica, frutiger, univers, each outputting a separate block view of 3 teasers each. This is what your markup would look like:
<div class="drupal-tabs"> <!-- These are the actual tab labels. They are always visible, the current tab's a will have an 'active' class --> <ul class="anchors"> </ul> <!-- These are the individual tabs. All but the currently selected tab will be hidden --> <div id="bodoni"> <?php print $bodoni ?> </div> <div id="frutiger"> <?php print $frutiger ?> </div> <div id="helvetica"> <?php print $helvetica ?> </div> <div id="univers"> <?php print $univers ?> </div> </div>
以上是关于Drupal jquery选项卡集的主要内容,如果未能解决你的问题,请参考以下文章