问问题
3204 次
4 回答
2
您可以使用not
方法:
$("#list1 option").not(':first').sort(function(a, b) {
return a.text > b.text;
}).appendTo('#list1');
于 2013-06-03T11:02:02.703 回答
0
$("#list1").html($("#list1 option").sort(function (a, b) {
if(!a.value) return;
return a.text == b.text ? 0 : a.text < b.text ? -1 : 1
}))
于 2013-06-03T11:01:24.767 回答
0
尝试这个,
$("#list1").html(
$("#list1 option:first")+
$("#list1 option:first").nextAll('option').sort(function (a, b) {
return a.text == b.text ? 0 : a.text < b.text ? -1 : 1
});)
于 2013-06-03T11:02:34.580 回答