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:
  1. <div class="drupal-tabs">
  2. <!-- These are the actual tab labels. They are always visible, the current tab's a will have an 'active' class -->
  3. <ul class="anchors">
  4. <li><a href="#bodoni">Bodoni</a></li>
  5. <li><a href="#frutiger">Frutiger</a></li>
  6. <li><a href="#helvetica">Helvetica</a></li>
  7. <li><a href="#univers">Univers</a></li>
  8. </ul>
  9. <!-- These are the individual tabs. All but the currently selected tab will be hidden -->
  10. <div id="bodoni">
  11. <?php print $bodoni ?>
  12. </div>
  13. <div id="frutiger">
  14. <?php print $frutiger ?>
  15. </div>
  16. <div id="helvetica">
  17. <?php print $helvetica ?>
  18. </div>
  19. <div id="univers">
  20. <?php print $univers ?>
  21. </div>
  22. </div>

以上是关于Drupal jquery选项卡集的主要内容,如果未能解决你的问题,请参考以下文章

如何使用角度和 UI 引导向选项卡集添加动态内容

Drupal 6 视图 2:PHP 片段

Drupal 7中的PHP变量到jQuery

Drupal jQuery命名空间

Drupal标题徽标和网站名称片段页面.tpl.php

当没有可用的 javascript 时,在 drupal 中优雅地降级 jquery。想法?