text jQuery Tabs Short

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text jQuery Tabs Short相关的知识,希望对你有一定的参考价值。

HTML:
<div class="wrapper">
    <div class="tabs">
        <span class="tab">Вкладка 1</span>
        <span class="tab">Вкладка 2</span>
        <span class="tab">Вкладка 3</span>        
    </div>
    <div class="tab_content">
        <div class="tab_item">Содержимое 1</div>
        <div class="tab_item">Содержимое 2</div>
        <div class="tab_item">Содержимое 3</div>
    </div>
</div>

jQuery:
$(".tab_item").not(":first").hide();
$(".wrapper .tab").click(function() {
	$(".wrapper .tab").removeClass("active").eq($(this).index()).addClass("active");
	$(".tab_item").hide().eq($(this).index()).fadeIn()
}).eq(0).addClass("active");

CSS:
.wrapper .active { color: red; }

以上是关于text jQuery Tabs Short的主要内容,如果未能解决你的问题,请参考以下文章

JS-jQuery-EasyUI-Layout-Tabs:Tabs 标签页/选项卡

。net中我用jquery.easyui.tabs怎么实现刷新?点击刷新当前页怎么实现啊?求高手帮忙!

jquery ui中切换标签时如何刷新当前tabs下的内容

课堂笔记 layout 布局手风琴accordion选项卡tabs

EasyUISubGrid 绑定tabs效果

jquery 动态添加tab 效果