使用jQuery实现option的上移和下移

Posted 雨帘轻挂

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jQuery实现option的上移和下移相关的知识,希望对你有一定的参考价值。

基本思路:
    上移:(1)获取当前选中的元素的索引值
            (2)判断当前元素是否为第一个元素
            (3)如果是,则不执行上移操作,如果不是,则则调用insertBefore方法插入到他的prev(紧邻的上一个)元素之前
1 var up = function () {
2          var selectedIndex = $("#SelectedAddressIds option:selected").index(); //获取当前选中元素的索引
3          if(selectedIndex >= 1){
4                   // 插入上一个
5                $("#SelectedAddressIds option:selected").insertBefore($("#SelectedAddressIds option:selected").prev(‘option‘));
6          }
7 }
  下移:(1)获取所有option元素的索引值
              (2)获取当前选中元素的索引值
              (3)判断当前选中元素是否为最后一个元素,如果是,则不执行下移,如果不是则调用insertAfter方法插入到他的next(紧邻的下一个)元素的后面。
 1 var down = function () {
 2             // 获取最后一个option的索引值
 3             var optionNum = $("#SelectedAddressIds option").size() - 1;
 4             // 获取当前选中元素的索引值
 5             var selectedIndex = $("#SelectedAddressIds option:selected").index();
 6 
 7             if(selectedIndex < 6){
 8                 // 插入下一个
 9                 $("#SelectedAddressIds option:selected").insertAfter($("#SelectedAddressIds option:selected").next(‘option‘));
10             }
11 }

 

以上是关于使用jQuery实现option的上移和下移的主要内容,如果未能解决你的问题,请参考以下文章

请教jquery 对表格的行操作的。对页面表格进行上下移动位置,删除记录的操作。 谢谢。如下补充

jquery点击左边移到右边,上移,下移,置顶,置底排序小插件

AngularJS实现数据列表的增加删除和上移下移等功能实例

js实现数组内相邻元素上移,下移

js实现数组内相邻元素上移,下移

元素的上移下移等排序操作