English 中文(简体)
带有jQuery的CSS选项卡:只显示当前选项卡的内容
原标题:CSS tabs with jQuery: displaying just the content of current tab

我有这个带有一些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>
最佳回答

尝试将此添加到您的css中:

div.spacing > div {
    display: none;
}

这将隐藏所有div,这些div是类<code>间距</code>的div的子级。

或者,为了更好地优雅地降级,将它们隐藏在文档中。ready函数:

$( div.spacing > div ).hide();
问题回答

您可能希望使用:

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

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





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签