0

これは、展開/折りたたみを実行しているときの次のコードですが、その中で展開/折りたたみ操作を実行するときにインデックスを識別したいだけです。

そのためのサンプルコードを教えてください。

     $("#accordionDemo2").accordion({
            collapsible: true
        });

    <p><h2>Hi, This is Multiple Panel Demo1</h2></p>
    <div id="accordionDemo2">
        <h3><a href="#" class="acc">Section 1</a></h3>
        <div>
            <p>Hi, This is Section 1</p>
        </div>
        <h3><a href="#" class="acc">Section 2</a></h3>
        <div>
            <p>Hi, This is Section 2</p>
        </div>
        <h3><a href="#" class="acc">Section 3</a></h3>
        <div>
            <p>Hi, This is Section 3</p>        
        </div>
        <h3><a href="#" class="acc">Section 4</a></h3>
        <div>
            <p>Hi, This is Section 4</p>
        </div>
    </div>
4

1 に答える 1

0

http://docs.jquery.com/UI/Accordion#option-active

アクティブな要素のセレクター。開始時に何も表示しない場合は、false に設定します。折りたたみが必要: true。

//getter
var active = $( ".selector" ).accordion( "option", "active" );
//setter
$( ".selector" ).accordion( "option", "active", 2 );
于 2012-08-13T07:44:54.403 に答える