4

我正在为我的博客使用标签式精选帖子。内容完全加载后如何实现div#latest-featured意志hide()然后它回来?show()

$(document).ready(function() {
    //Default Action
    $(".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 rel attribute value to identify the active tab + content
        $(activeTab).fadeIn(); //Fade in the active content
        return false;
    });
});

HTML

<ul class="tabs">
  <li><a href="#f1">Title 1</a></li>
  <li><a href="#f2">Title 2</a></li>
</ul>
<div id="latest-featured">
  <div id="f1" class="tab_content">
    <p>Content for title 1</p>
    <p>Why I want to hide the #latest-featured because.. when had image @ script here.. the tab_content will collapse all and break my design</p>
  </div>
  <div id="f2" class="tab_content">
    <p>Content for title 1</p>
    <p>Why I want to hide the #latest-featured because.. when had image @ script here.. the tab_content will collapse all and break my design</p>
  </div>
</div>

示例我有一个带有 id 的 div,#latest-featured我想隐藏它直到内容完全加载,然后在加载完所有内容后将其显示回来。

如何实现上面的当前代码。

4

4 回答 4

12

可能最好做这样的事情:

<div id="latest-features" style="display:none;"></div>

$(function() {
    // do work
    $("div#latest-featured").show();
}

默认情况下隐藏任何内容通常不是一个好主意,但这会满足您的要求。

于 2010-08-10T18:44:34.723 回答
2

如果您希望它在加载后显示,请声明该display: nonediv 的 CSS,然后调用$('div#latest-featured').show();您的 $(document).ready 函数。

于 2010-08-10T18:46:25.293 回答
1

如果您希望它在加载后显示,请声明该 div 的 CSS display: none,然后调用$('div#latest-featured').show();您的$(document).ready函数。

罗伯特回答得最好我会投票,但还不能......寻找这个解决方案几个小时,这是我找到的最好的......

于 2012-03-21T15:38:31.483 回答
0

为什么不将 div 设置为 display:none 直到您加载数据,然后删除 display:none ......有很多方法可以做我刚才提到的顺便说一句(例如,jQuery .toggle(true) )

于 2010-08-10T18:40:16.333 回答