在jquery mobile listview上实现排序的最佳方法是什么?
我有一些输入隐藏在每个可折叠的距离到目的地的距离: 我想根据这个值对listview进行排序。
<DIV data-role="collapsible-set" data-theme="c" data-content-theme="d">
<DIV data-role="collapsible">
<H3>Section 1</H3>
<P>I'm the collapsible content for section 1</P>
<input type="hidden" value="35km"/>
</DIV>
<DIV data-role="collapsible">
<H3>Section 2</H3>
<P>I'm the collapsible content for section 2</P>
<input type="hidden" value="16km"/>
</DIV>
</DIV>
正如我所说,我希望能够根据hiddens中的距离值对列表进行排序,是否有人可以建议实施此方法的最佳方式?
感谢。