JQuery 简单选项卡导航

发布于 2024-10-28 06:45:04 字数 190 浏览 1 评论 0原文

我想要一个简单的导航,不使用任何插件,而是使用简单的 JQuery。

链接 1 第 1 部分、第 2 部分、第 3 部分、第 4 部分
链接2
链接3
链接 4

当用户单击链接 1 时,显示 Div 1 并隐藏所有其他 div。然后,链接 2 显示 Div2 并隐藏所有其他部分。我想用更少的行数来做到这一点。

I want a simple navigation without using any plugin but simple JQuery.

Link 1 Div 1,Div 2,Div 3,Div 4
Link 2
Link 3
Link 4

When user clicks Link 1 show Div 1 and hide all other divs. Link 2 then show Div2 and hide all others. I want to do this with less number of lines.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

醉梦枕江山 2024-11-04 06:45:04

这是我一直使用的片段(原始):
JS:

    $(document).ready(function() {

    //When page loads...
    $(".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 href attribute value to identify the active tab + content
        $(activeTab).fadeIn(); //Fade in the active ID content
        return false;
    });

});

css(这里有很多改进的地方呵呵):

ul.tabs {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    height: 32px; /*--Set height of tabs--*/
    border-bottom: 1px solid #999;
    border-left: 1px solid #999;
    width: 100%;
}
ul.tabs li {
    float: left;
    margin: 0;
    padding: 0;
    height: 31px; /*--Subtract 1px from the height of the unordered list--*/
    line-height: 31px; /*--Vertically aligns the text within the tab--*/
    border: 1px solid #999;
    border-left: none;
    margin-bottom: -1px; /*--Pull the list item down 1px--*/
    overflow: hidden;
    position: relative;
    background: #e0e0e0;
}
ul.tabs li a {
    text-decoration: none;
    color: #000;
    display: block;
    font-size: 1.2em;
    padding: 0 20px;
    border: 1px solid #fff; /*--Gives the bevel look with a 1px white border inside the list item--*/
    outline: none;
}
ul.tabs li a:hover {
    background: #ccc;
}
html ul.tabs li.active, html ul.tabs li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
    background: #fff;
    border-bottom: 1px solid #fff; /*--Makes the active tab look like it's connected with its content--*/
}

.tab_container {
    border: 1px solid #999;
    border-top: none;
    overflow: hidden;
    clear: both;
    float: left; width: 100%;
    background: #fff;
}
.tab_content {
    padding: 20px;
    font-size: 1.2em;
}

标记:

    <ul class="tabs">
    <li><a href="#tab1">Gallery</a></li>
    <li><a href="#tab2">Submit</a></li>
</ul>

<div class="tab_container">
    <div id="tab1" class="tab_content">
        asdfasdfasdfasdf
    </div>
    <div id="tab2" class="tab_content">
        asdfasdf
    </div>
</div>

希望有帮助

Here is a snippet I use all the time (original):
JS:

    $(document).ready(function() {

    //When page loads...
    $(".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 href attribute value to identify the active tab + content
        $(activeTab).fadeIn(); //Fade in the active ID content
        return false;
    });

});

css (a lot of improvement area here hehe):

ul.tabs {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    height: 32px; /*--Set height of tabs--*/
    border-bottom: 1px solid #999;
    border-left: 1px solid #999;
    width: 100%;
}
ul.tabs li {
    float: left;
    margin: 0;
    padding: 0;
    height: 31px; /*--Subtract 1px from the height of the unordered list--*/
    line-height: 31px; /*--Vertically aligns the text within the tab--*/
    border: 1px solid #999;
    border-left: none;
    margin-bottom: -1px; /*--Pull the list item down 1px--*/
    overflow: hidden;
    position: relative;
    background: #e0e0e0;
}
ul.tabs li a {
    text-decoration: none;
    color: #000;
    display: block;
    font-size: 1.2em;
    padding: 0 20px;
    border: 1px solid #fff; /*--Gives the bevel look with a 1px white border inside the list item--*/
    outline: none;
}
ul.tabs li a:hover {
    background: #ccc;
}
html ul.tabs li.active, html ul.tabs li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
    background: #fff;
    border-bottom: 1px solid #fff; /*--Makes the active tab look like it's connected with its content--*/
}

.tab_container {
    border: 1px solid #999;
    border-top: none;
    overflow: hidden;
    clear: both;
    float: left; width: 100%;
    background: #fff;
}
.tab_content {
    padding: 20px;
    font-size: 1.2em;
}

markup:

    <ul class="tabs">
    <li><a href="#tab1">Gallery</a></li>
    <li><a href="#tab2">Submit</a></li>
</ul>

<div class="tab_container">
    <div id="tab1" class="tab_content">
        asdfasdfasdfasdf
    </div>
    <div id="tab2" class="tab_content">
        asdfasdf
    </div>
</div>

Hope it helps

回梦 2024-11-04 06:45:04

我在 jsfiddle 为您制作了一个,希望对您有所帮助。干杯

I've made one for you at jsfiddle, hope this help. cheers

清浅ˋ旧时光 2024-11-04 06:45:04

https://jqueryui.com/tabs/ 是一个插件,但它也算作简单的 jQuery。您考虑过这个选择吗?

https://jqueryui.com/tabs/ is a plugin but it also counts as simple jQuery. Have you considered that option?

迷途知返 2024-11-04 06:45:04

您有什么理由不想使用插件吗?这是一个很棒的插件,可以满足您的所有要求: http://flowplayer.org/tools/标签/index.html

Any reason why you don't want to use a plugin? Here is a great plugin that will do everything you are asking: http://flowplayer.org/tools/tabs/index.html

似狗非友 2024-11-04 06:45:04

这是一个简单的脚本,只需添加到您的文件中即可工作,并且与其他现有脚本没有冲突。

请参阅演示:http://simple-jquery-responsive-tab.blogspot.in/

here is a simple script, just add in your file and it will work, also no conflict with other existing scripts.

See demo: http://simple-jquery-responsive-tab.blogspot.in/

烟雨扶苏 2024-11-04 06:45:04

您可以在 jsFiddle 上检查这个 组件

如果您想动态填充,也可以使用它。

$(document).ready(function() {
$.each($('.tabwrapper .tabmenu ul.nav li'), function(i) {
    $(this).attr('data-tab', i);
});
$.each($('.tabwrapper .tabcontent .tabs'), function(i) {
    $(this).attr('data-tab', i);
});
$('.tabwrapper .tabmenu ul.nav li a').click(function() {
    var parent = $(this).parent(),
        dataId = parent.data('tab');
    if (!parent.hasClass('active')) {
        $('.tabwrapper .tabmenu ul.nav li').removeClass('active');
        parent.addClass('active');
        $('.tabwrapper .tabcontent .tabs').hide();
        $('.tabwrapper .tabcontent .tabs[data-tab="' + dataId + '"]').fadeIn();
    }
});

});

You can check this component on jsFiddle.

It can also be used if you want to populate dynamically.

$(document).ready(function() {
$.each($('.tabwrapper .tabmenu ul.nav li'), function(i) {
    $(this).attr('data-tab', i);
});
$.each($('.tabwrapper .tabcontent .tabs'), function(i) {
    $(this).attr('data-tab', i);
});
$('.tabwrapper .tabmenu ul.nav li a').click(function() {
    var parent = $(this).parent(),
        dataId = parent.data('tab');
    if (!parent.hasClass('active')) {
        $('.tabwrapper .tabmenu ul.nav li').removeClass('active');
        parent.addClass('active');
        $('.tabwrapper .tabcontent .tabs').hide();
        $('.tabwrapper .tabcontent .tabs[data-tab="' + dataId + '"]').fadeIn();
    }
});

});

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文