1

我想在选择 tab1 时显示特定的 div。与 tab2 相同。请给我一个解决方案以在单击选项卡时显示/隐藏这些 div。我无法识别处于活动状态的这些选项卡的特定类或 ID。我的要求是单击 tab1 时我需要显示tab1content1div

下面是链接

http://jsfiddle.net/ucaxt/

4

1 回答 1

1

一种不需要将外部内容移动到选项卡本身的方法是:

var contents = $('div[id^="content"]').hide();
$("#tabs").tabs({
    activate: function(evt, ui) {
        var num = ui.newPanel.attr('id').replace(/\D+/g, '');
        contents.hide();
        $('#content' + num).show();
    }
});​

JS 小提琴演示

但是,这种方法确实要求您在要显示id所有内容div元素中附加一个数字,以便识别单击的选项卡、显示的面板和选项卡之外的元素之间的关系;所以你的 HTML 变成:

<div id="tabs">
    <ul>
        <li><a href="#tab1">Tab1</a></li>
        <li><a href="#tab2">Tab2</a></li>
    </ul>
    <div id="tab1">
        test1
    </div>
    <div id="tab2">
        test2
    </div>
</div>
<br/>
<div id="content1">
    <p>
        on click of first tab (tab1) I need to show this id as well
    </p>
</div>
<br/>
<div id="content2"> <!-- added the '2' to the id here -->
    <p>
        on click of Second tab (tab2) I need to show this id as well
    </p>
</div>

如果您将内容div元素包装在外部容器中,在我的演示中它有idof containers,那么您可以将divs 定位为稍微不同的显示/隐藏:

$("#tabs").tabs({
    activate: function(evt, ui) {
        var num = ui.newPanel.attr('id').replace(/\D+/g, '');
        $('#contents > div').eq(num - 1).show().siblings().hide();
    }
});

并使用 HTML:

<div id="tabs">
    <ul>
        <li><a href="#tab1">Tab1</a></li>
        <li><a href="#tab2">Tab2</a></li>
    </ul>
    <div id="tab1">
        test1
    </div>
    <div id="tab2">
        test2
    </div>
</div>
<br/>
<div id="contents">
    <div id="content1">
        <p>
            on click of first tab (tab1) I need to show this id as well
        </p>
    </div>
    <br/>
    <div id="content2">
        <p>
            on click of Second tab (tab2) I need to show this id as well
        </p>
    </div>
</div>

JS 小提琴演示

我已经修改了上面的代码,以回应 OP 留下的评论(下面):

[On] 加载页面我需要显示内容 div1 以及 tab1 内容。

function showContent(evt, ui) {
    if (!evt || !ui) {
        return false;
    }
    else {
        // ui.newPanel in the activate event,
        // ui.panel in the create event
        var panel = ui.newPanel || ui.panel,
            num = panel.attr('id').replace(/\D+/g, '');
        $('#contents > div').eq(num - 1).show().siblings().hide();
    }
}
$(function() {
    $("#tabs").tabs({
        // runs the function when the tabs are created:
        create: function(evt, ui) {
            showContent(evt, ui);
        },
        // runs the function when the tabs are activated:
        activate: function(evt, ui) {
            showContent(evt, ui);
        }
    });
});​

JS 小提琴演示

于 2012-12-21T19:42:05.687 回答