为另一个div创建一组新的工作选项卡和窗格

时间:2010-12-26 21:35:00

标签: jquery tabs

这是我的css:

ul.tabs { 
    list-style:none; 
    margin: 0!important; 
    padding:0;    
    border-bottom:0px solid #666;    
    height:30px;
}

/* single tab */
ul.tabs li { 
    float:left;     
    text-indent:0;
    padding:0;
    margin:0 !important;
    list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
ul.tabs a {
    background-color: #000000;
    font-size:12px;
    display:block;
    height: 30px;
    line-height:30px;
    width: 134px;
    text-align:center;
    text-decoration:none;
    color:#FFFFFF;
    padding:0px;
    margin:0px;
    position:relative;
    background-image: url();
    background-repeat: no-repeat;
    background-position: -420px 0;
    font-family: arial;
    font-weight: bold;
    text-transform: uppercase;
}


ul.tabs a:active {
    outline:none;        
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
    background-position: -420px -31px;    
    color:#fff;    
}

    /* active tab uses a class name "current". 
its highlight is also done by moving the background image. */
    ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
        background-position: -420px -62px;        
        cursor:default !important; 
        color:#000 !important;
    }


/* initially all panes are hidden */ 
.panes .pane {
    display:none;        
}

.panes div {
    display:none;
    padding:15px 10px;
    border:medium solid #000000;
    height:150px;
    font-size:14px;
    background-color: #0099FF;
}

这是我的HTML:

<div class="panes">
    <div>working pane 1</div>
    <div>working pane 2</div>
    <div>working pane 3</div>
</div>   

<ul class="tabs">
    <li><a href="#">Working Tab1</a></li>
    <li><a href="#">Working Tab2</a></li>
    <li><a href="#">Working Tab3</a></li>
</ul>
<p>

<div class="Next Set of Tabs I want to work">
  <ul class="tabs">
    <li><a href="#">tab 1</a></li>
    <li><a href="#">tab 2</a></li>
</ul>

<div class="Next Set of Panes I want to work">
    <div>member pane 1</div>
    <div>member pane 2</div>
    <div>member pane 3</div>
</div> 
</div

这是我的javascript:

// perform JavaScript after the document is scriptable.
$(function() {
    // setup ul.tabs to work as tabs for each div directly under div.panes
    $("ul.tabs").tabs("div.panes > div");
});
</script>

如何创建我可以在文档中的其他位置使用的第2组和第3组选项卡和窗格?我尝试了一些自己的编辑,但我失败了。

此外,我必须对我的javascript进行哪些更改,以便除了当前的标签和窗格之外它还适用于添加的标签和窗格?

请在代码中回复示例。提前谢谢。

1 个答案:

答案 0 :(得分:0)

您没有提供有关您正在使用的jQuery插件的任何详细信息。但是,如果您正在使用jQuery Tools“Tabs”插件,那么我建议您使用.each()循环运行tabs插件,并获取具有唯一引用的窗格。

$(function() {
$('.tabs').each(function() {
$(this).tabs($(this).prev('.panes'))
});

对不起,如果这很模糊;但是我们可以在插件上做更多细节。