其他分享
首页 > 其他分享> > 数组元素的上移、下移

数组元素的上移、下移

作者:互联网

有时候我们需要数组元素进行移动,交换位置。我们可以使用一行代码实现。

复制代码
//要移动的数组
let htmlArr = [
  {name: '赵一'},  
  {name: '钱二'},
  {name: '张三'},
  {name: '李四'}
];
复制代码

移动函数

复制代码
//排序函数(移动)
/*
上移 type 为 0, 下移为 1.
index 为 当前移动元素的下标
*/
function changeSort (index, type) {
  htmlArr.splice(type ? index : index - 1, 1, ...htmlArr.splice(type ? index + 1 : index, 1, htmlArr[type ? index : index - 1]));
};
复制代码

 

使用场景:

demo 地址:https://codepen.io/namePeach/pen/mZGKKL?editors=1012

标签:index,name,上移,htmlArr,数组,下移,移动,type
来源: https://www.cnblogs.com/sexintercourse/p/14108372.html