我有一个可折叠集,当页面加载时,我想自动打开第一个可折叠集。
我如何在 jquerymobile 中做到这一点?
从文档中您可以使用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>
您也可以通过pageinit
事件上的代码来做到这一点:
$("#myCollapsibleSet").children(":first").trigger("expand");
假设#myCollapsibleSet
是您的可折叠集的 ID。