在 jquery mobile 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>
正如我所说,我希望能够根据隐藏中的距离值对列表进行排序,任何人都可以建议实现这一点的最佳方法吗?
谢谢。