按字母顺序插入jQuery

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按字母顺序插入jQuery相关的知识,希望对你有一定的参考价值。

This function will insert items into an orders alphabetically (assuming it's already alphabetical). Initially design to make a smooth single page load/save feature that sotred everything in drop down lists, you guessed it, alphabetically. Can simply be modified to work in any sort of layout (ordered lists was just easier for the example)

Example at the link, you can post any questions there too.
  1. function insert(){
  2. var name = $("input[name='insertvalue']").val();
  3. if(name!=''){
  4. var toinsert = true;
  5. $("ol.thelist > li").each(function(){
  6. var item = $(this).html();
  7. if(name.toUpperCase() < item.toUpperCase()){
  8. if(toinsert){
  9. $(this).before('<li>'+name+'</li>');
  10. toinsert = false;
  11. }
  12. }
  13. });
  14. if(toinsert){
  15. $("ol.thelist").append('<li>'+name+'</li>');
  16. }
  17. $("input[name='insertvalue']").val('')
  18. }
  19. }

以上是关于按字母顺序插入jQuery的主要内容,如果未能解决你的问题,请参考以下文章

Jquery排序 - 按字母顺序排列图像[重复]

csharp 在Swashbuckle Swagger中,此片段允许按字母顺序显示操作。

使用插入排序算法按字母顺序排序 c#

Jquery按字母顺序排序列表

如何在 jquery 选择的下拉列表中按字母顺序重新排序 <options>

NSDictionary 按字母顺序排序[重复]