0

起動時にアコーディオンをデフォルトで閉じるにはどうすればよいですか。こちらがサンプルビューです

コードは次のとおりです。

<script>
$(function() { 

$("#accordion").tabs("#accordion div.pane", {tabs: 'h3', effect: 'slide'});
});
</script>

<script>

// add new effect to the tabs
$.tools.tabs.addEffect("slide", function(i, done) {

    // 1. upon hiding, the active pane has a ruby background color
    this.getPanes().slideUp("slow").css({backgroundColor: "#fff"});

    // 2. after a pane is revealed, its background is set to its original color (transparent)
    this.getPanes().eq(i).slideDown("slow", function()  {
        $(this).css({backgroundColor: 'transparent'});

        // the supplied callback must be called after the effect has finished its job
        done.call();
    });
});
</script>
4

2 に答える 2

0

CSSに入れます:

#accordion div.pane: display:none;
于 2010-03-31T20:56:13.130 に答える
0

次のように実行できます。

$("#accordion")
  .tabs("#accordion div.pane", {tabs: 'h3', effect: 'slide', collapsible: true})
  .tabs('select', false);

これは としてマークしcollapsible、 を使用して、そこに表示されていないタブを選択しますfalse

于 2010-03-31T22:17:55.210 に答える