📅  最后修改于: 2022-03-11 15:02:34.805000             🧑  作者: Mango
$('.sortme').sort(function(a, b) {
if (a.textContent < b.textContent) {
return -1;
} else {
return 1;
}
}).appendTo('body');