标签页

介绍

abp-tab 是从引导标签元素派生的基本标签导航内容容器.

基本用法:

  1. <abp-tabs>
  2. <abp-tab title="Home">
  3. Content_Home
  4. </abp-tab>
  5. <abp-tab-link title="Link" href="#" />
  6. <abp-tab title="profile">
  7. Content_Profile
  8. </abp-tab>
  9. <abp-tab-dropdown title="Contact" name="ContactDropdown">
  10. <abp-tab title="Contact 1" parent-dropdown-name="ContactDropdown">
  11. Content_1_Content
  12. </abp-tab>
  13. <abp-tab title="Contact 2" parent-dropdown-name="ContactDropdown">
  14. Content_2_Content
  15. </abp-tab>
  16. </abp-tab-dropdown>
  17. </abp-tabs>

Demo

参阅标签页demo页面查看示例.

abp-tab Attributes

  • title: 设置标签页菜单文字.
  • name: 设置生成元素的”id”属性. 默认值为Guid. 除非使用Jquery更改或修改了选项卡,否则不需要.
  • active: 设置active标签页.

示例:

  1. <abp-tabs name="TabId">
  2. <abp-tab name="nav-home" title="Home">
  3. Content_Home
  4. </abp-tab>
  5. <abp-tab name="nav-profile" active="true" title="profile">
  6. Content_Profile
  7. </abp-tab>
  8. <abp-tab name="nav-contact" title="Contact">
  9. Content_Contact
  10. </abp-tab>
  11. </abp-tabs>

Pills

示例:

  1. <abp-tabs tab-style="Pill">
  2. <abp-tab title="Home">
  3. Content_Home
  4. </abp-tab>
  5. <abp-tab title="profile">
  6. Content_Profile
  7. </abp-tab>
  8. <abp-tab title="Contact">
  9. Content_Contact
  10. </abp-tab>
  11. </abp-tabs>

Vertical

vertical-header-size: 设置标签标题的列宽.

示例:

  1. <abp-tabs tab-style="PillVertical" vertical-header-size="_2" >
  2. <abp-tab active="true" title="Home">
  3. Content_Home
  4. </abp-tab>
  5. <abp-tab title="profile">
  6. Content_Profile
  7. </abp-tab>
  8. <abp-tab title="Contact">
  9. Content_Contact
  10. </abp-tab>
  11. </abp-tabs>