我有一个很大的复选框列表(600+),是否可以使用js按字母顺序排序,然后通过操作dom重新排列它们?
这
<form id="stuff">
<input type="checkbox" value="bbb" /> bbb
<input type="checkbox" value="aaa" /> aaa
<input type="checkbox" value="ccc" /> ccc
</form>
到
<form id="stuff">
<input type="checkbox" value="aaa" /> aaa
<input type="checkbox" value="bbb" /> bbb
<input type="checkbox" value="ccc" /> ccc
</form>
答案 0 :(得分:5)
如果你可以将它们包装在标签中,这是一个很好的做法,你可以这样做:
<form id="stuff">
<label>
<input type="checkbox" value="bbb" />bbb</label>
<label>
<input type="checkbox" value="aaa" />aaa</label>
<label>
<input type="checkbox" value="ccc" />ccc</label>
</form>
var sortByText = function (a, b) {
return $.trim($(a).text()) > $.trim($(b).text());
}
$(document).ready(function () {
var sorted = $('#stuff label').sort(sortByText);
$('#stuff').append(sorted);
});
<强> Demo 强>