我想像这样的样本输出:
苹果
香蕉
樱桃
但是这个脚本给了我这个输出: Apple Banana Cherry
jQuery(function( $ ) {
$(function() {
$( ".listLi", ".rightSidebar" ).sort(function( a, b ) {
return $( a ).text().toLowerCase() > $( b ).text().toLowerCase();
}).appendTo( ".rightSidebar" );
});
});