4

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

我如何在 jquerymobile 中做到这一点?

4

2 回答 2

7

文档中您可以使用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>
于 2013-06-25T14:32:11.403 回答
5

您也可以通过pageinit事件上的代码来做到这一点:

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

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

于 2013-06-25T14:40:55.817 回答