jquery – 如何隐藏Ionic框架中的选项卡

前端之家收集整理的这篇文章主要介绍了jquery – 如何隐藏Ionic框架中的选项卡前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我选择了离子选项卡视图,所以我可以使用模板系统,但我无法删除选项卡。我想要这样的视图,我设法删除标题栏,但我不能删除标签

这是我到目前为止

如果我隐藏选项卡(ion-tabs {display:none}),它也会删除内容,这不是我想要的。

解决方法

看看 Ionic tab documentation

To hide the tabbar but still show the content,add the “tabs-item-hide” class.

所以你会改变这个:

<div class="tabs">
  <a class="tab-item" href="#">
    Home
  </a>
  ...
</div>

对此:

<div class="tabs tabs-item-hide">
  <a class="tab-item" href="#">
    Home
  </a>
  ...
</div>
原文链接:https://www.f2er.com/jquery/183266.html

猜你在找的jQuery相关文章