首先激活第二个标签

时间:2012-08-03 17:37:48

标签: javascript jquery html css

我有这个非常着名的脚本,我正在努力工作,目前一切都很好,但是当你第一次打开页面时它会显示第一个标签,因为它应该,我想要的是它显示第二个标签。 (第一个是邮件撰写选项卡,第二个是实际收件箱)

这是javascript

    <script type="text/javascript">

$(document).ready(function() {

    //Default Action
    $(".tab_content").hide(); //Hide all content
    $("ul.tabs li:first").addClass("active").show(); //Activate first tab
    $(".tab_content:first").show(); //Show first tab content

    //On Click Event
    $("ul.tabs li").click(function() {
        $("ul.tabs li").removeClass("active"); //Remove any "active" class
        $(this).addClass("active"); //Add "active" class to selected tab
        $(".tab_content").hide(); //Hide all tab content
        var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
        $(activeTab).fadeIn(); //Fade in the active content
        return false;
    });

});

</script>

这是标签的html

> <ul class="tabs">
>     <li><a href="#compose" class="compose"></a></li>
>     <div id="mail_sidebar_top">
>         <li><a href="#inbox" class="inbox">Inbox(0)</a></li>
>         <li><a href="#sent_mail" class="sent_mail">Sent Mail(0)</a></li>
>         <li><a href="#trash" class="trash">Trash(0)</a></li>
>         <li><a href="#reported" class="reported">Reported</a></li>
>         <li><a href="#drafts" class="drafts">Drafts</a></li>
>         
>     </div><!---end mail_sidebar_top--->
>     
>     <div id="mail_sidebar_middle">
>         <li><a href="#notifications" class="notifications">Notifications</a></li>
>         <li><a href="#alerts" class="alerts">Alerts</a></li>
>         
>     </div><!---end mail_sidebar_top--->
>    
>     </ul>

感谢您提供的任何帮助

2 个答案:

答案 0 :(得分:3)

要显示第二个标签,请更改这些行

   $("ul.tabs li:eq(1)").addClass("active").show(); //Activate second tab
   $(".tab_content:eq(1)").show(); //Show second tab content

基本上,在当前版本中,加载页面时,可以基于jQuery选择器添加活动选项卡内容和类。因为您的html内容与选项卡的顺序相同,而不是使用第一个实例的选择器(即:first),我们可以将其更改为:eq(1)。 (在这种情况下,它是一个,因为jquery引用数组中的DOM元素,因此第一个选项卡位于索引0,第二个选项卡位于索引1)。要在开始时显示不同的标签,您只需将:eq(1)更改为:eq(n),其中n是所需标签的数组索引。

编辑更好的解决方案是使用jQuery提供的实际eq()函数,因为它增加了性能提升:

   $("ul.tabs li").eq(1).addClass("active").show(); //Activate second tab
   $(".tab_content").eq(1).show(); //Show second tab content

答案 1 :(得分:-1)

$(".tabs").tabs({
    selected: 1
});

有很多选项here