我只想在 collapsiblecol2
之前更改 collapsible 的位置col1
。最后的顺序应该是:1. col2
2. col1
3.col3
<div data-role="content">
<div id="List" data-role="collapsible-set">
<div data-role="collapsible" data-content-theme="c" id="col1">
<h3>Header 1</h3>
<p>Text 1</p>
</div>
<div data-role="collapsible" data-content-theme="c" id="col2">
<h3>Header 2</h3>
<p>Text 2</p>
</div>
<div data-role="collapsible" data-content-theme="c" id="col3">
<h3>Header 3</h3>
<p>Text 3</p>
</div>
</div>
</div>