码迷,mamicode.com
首页 > 编程语言 > 详细

js数组实现上移下移

时间:2019-12-13 16:42:54      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:span   style   nbsp   删除   ice   index   js数组   ==   color   

up(index) {
            if(index === 0) {
              return
            }
            //在上一项插入该项
            this.list.splice(index - 1, 0, (this.list[index]))
            //删除后一项
            this.list.splice(index + 1, 1)

            this.save();
        },
        down(index) {
            if (index === (this.list.length-1)) {
              return
            }
            // 在下一项插入该项
            this.list.splice(index + 2, 0, (this.list[index]))
            // 删除前一项
            this.list.splice(index, 1)

            this.save();
        },

 

js数组实现上移下移

标签:span   style   nbsp   删除   ice   index   js数组   ==   color   

原文地址:https://www.cnblogs.com/ll15888/p/12035938.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!