带有 jQ​​uery 的 CSS 选项卡:仅显示当前选项卡的内容

发布于 2024-09-29 00:21:24 字数 3022 浏览 4 评论 0原文

我有这个带有一些 CSS 样式的 HTML 文件,现在我正在尝试创建垂直选项卡,但是当页面加载时,所有内容都会显示,那么如果我选择任何特定选项卡,则仅显示该选项卡的内容,但我只是担心当页。为什么所有选项卡内容都显示出来了?下面是代码。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
<head>
<title>Follow me!</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"></script>
<style type="text/css">
    ul.tabs {
    margin-top: 20px;
    padding: 0;
    list-style: none;
    height: 32px; /*--Set height of tabs--*/
    /*border-bottom: 1px solid #999;
    border-left: 1px solid #999;*/
    float:left;
}

ul.tabs li a {
    text-decoration: none;
    color: #000;

    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;
}

.spacing {
    margin-left:90px;
}
</style>
<script type="text/javascript">
    $(document).ready(function() {

    //When page loads...
    $("ul.tabs li:first-child a").addClass("active").show(); //Activate first tab
    $(".tab_content #link1").css("display", "block"); //Show first tab content

    //On Click Event
    $("ul.tabs li a").click(function() {

        $("ul.tabs li a").removeClass("active"); //Remove any "active" class
        $(".tab_content div").css("display","none");

        $(this).addClass("active"); //Add "active" class to selected tab


        var activeTab = $(this).attr("href"); //Find the href attribute value to identify the active tab + content
        $(activeTab).fadeIn(); //Fade in the active ID content
        return false;
    });

});
</script>


</head>
<body>

            <ul class="tabs">
                <li><a href="#link1" class="tab_content">Link1</a></li>
                <li><a href="#link2" class="tab_content">Link2</a></li>
                <li><a href="#link3" class="tab_content">Link3</a></li>

            </ul>
        <div class="tab_content spacing">
            <div id="link1">
                <p>Link1</p>
            </div>
            <div id="link2">
                <p>Link2</p>
            </div>
            <div id="link3">
                <p>Link3</p>
            </div>
        </div>

</body>
</html>

I have this HTML file with some CSS styles, now I am trying to create vertical tabs but when the page loads all the content is being displayed then if I select any particular tab only content of that tab is display but I am just worried when the page. How come all the tab content is being displayed? Below is the code.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
<head>
<title>Follow me!</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"></script>
<style type="text/css">
    ul.tabs {
    margin-top: 20px;
    padding: 0;
    list-style: none;
    height: 32px; /*--Set height of tabs--*/
    /*border-bottom: 1px solid #999;
    border-left: 1px solid #999;*/
    float:left;
}

ul.tabs li a {
    text-decoration: none;
    color: #000;

    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;
}

.spacing {
    margin-left:90px;
}
</style>
<script type="text/javascript">
    $(document).ready(function() {

    //When page loads...
    $("ul.tabs li:first-child a").addClass("active").show(); //Activate first tab
    $(".tab_content #link1").css("display", "block"); //Show first tab content

    //On Click Event
    $("ul.tabs li a").click(function() {

        $("ul.tabs li a").removeClass("active"); //Remove any "active" class
        $(".tab_content div").css("display","none");

        $(this).addClass("active"); //Add "active" class to selected tab


        var activeTab = $(this).attr("href"); //Find the href attribute value to identify the active tab + content
        $(activeTab).fadeIn(); //Fade in the active ID content
        return false;
    });

});
</script>


</head>
<body>

            <ul class="tabs">
                <li><a href="#link1" class="tab_content">Link1</a></li>
                <li><a href="#link2" class="tab_content">Link2</a></li>
                <li><a href="#link3" class="tab_content">Link3</a></li>

            </ul>
        <div class="tab_content spacing">
            <div id="link1">
                <p>Link1</p>
            </div>
            <div id="link2">
                <p>Link2</p>
            </div>
            <div id="link3">
                <p>Link3</p>
            </div>
        </div>

</body>
</html>

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

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

发布评论

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

评论(2

趴在窗边数星星i 2024-10-06 00:21:24

尝试将其添加到您的 CSS 中:

div.spacing > div {
    display: none;
}

这会隐藏属于 spacing 类的 div 子级的所有 div。

或者,为了更好地“优雅降级”,请将它们隐藏在 document.ready 函数中:

$('div.spacing > div').hide();

Try adding this to your css:

div.spacing > div {
    display: none;
}

This hides all the divs that are children of the div with the class spacing.

Or, for better 'graceful degredation', hide them in your document.ready function:

$('div.spacing > div').hide();
落日海湾 2024-10-06 00:21:24

你可能想使用 :

$(".tab_content div")live(,"ready",function(){
.... hide tabs that are not link1
})

或者当你的选项卡需要 javascript 才能工作时,你可以在开始时隐藏它们并在准备好时显示第一个(只是不要忘记你的 noscript 标签)

you might want to use :

$(".tab_content div")live(,"ready",function(){
.... hide tabs that are not link1
})

or as your tabs need javascript to work you can hide them at start and show the first one when ready (just don't forget your noscript tag)

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