gpt4 book ai didi

jquery - 在 jQuery 中订购
    /
      最简单的方法是什么?

转载 作者:行者123 更新时间:2023-12-03 21:28:20 25 4
gpt4 key购买 nike

我正在寻找一些示例代码,这些代码将按字母顺序对 HTML 列表中的列表项进行排序。有人可以帮忙吗?

这是供人们使用的示例列表:

<ul class="alphaList">
<li>apples</li>
<li>cats</li>
<li>bears</li>
</ul>

最佳答案

var items = $('.alphaList > li').get();
items.sort(function(a,b){
var keyA = $(a).text();
var keyB = $(b).text();

if (keyA < keyB) return -1;
if (keyA > keyB) return 1;
return 0;
});
var ul = $('.alphaList');
$.each(items, function(i, li){
ul.append(li); /* This removes li from the old spot and moves it */
});

关于jquery - 在 jQuery 中订购 <UL>/<OL> 最简单的方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/304396/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com