答案 0 :(得分:0)
您需要修改dec_sort
函数,只需切换a
和b
参数变量的顺序。
function dec_sort(a, b){ //instead of b, a
return ($(b).text()) > ($(a).text()) ? 1 : -1;
}
另外,存储.list
标记的内容:
var original = $('.list').html();
因此,当您想要恢复列表时,您可以执行以下操作:
$('.list').html(original);