如何自动打开第一个可折叠集(手风琴)?

时间:2013-06-25 14:30:24

标签: jquery jquery-mobile

我有一个可折叠的设置,当页面加载时,我想自动打开第一个可折叠的设置。

我是如何在jquerymobile中那样做的?

2 个答案:

答案 0 :(得分:6)

来自documentation您可以使用data-collapsed=false

<div data-role="collapsible-set">

    <div data-role="collapsible" data-collapsed="false">
    <h3>Section 1</h3>
    <p>I'm the collapsible set content for section 1.</p>
    </div>

    <div data-role="collapsible">
    <h3>Section 2</h3>
    <p>I'm the collapsible set content for section 2.</p>
    </div>
</div>

答案 1 :(得分:5)

您也可以通过pageinit事件的代码来执行此操作:

$("#myCollapsibleSet").children(":first").trigger("expand");

假设#myCollapsibleSet是您的可折叠集的ID。