摘要: // 切换数组位置 swapArray(arr, index1, index2) { arr[index1] = arr.splice(index2, 1, arr[index1])[0]; return arr; }, // 上移 zIndexUp(arr,index,length){ if(index+1 != length){ this.swapArray(arr, index, index 阅读全文
posted @ 2019-09-12 11:45 惠鹏曦 阅读(1318) 评论(0) 推荐(0) 编辑