// 上移
resumeUp(e) {
const index = e.currentTarget.dataset.index // 获取下标
// 在wxml里定义一下property
const currentItem = e.currentTarget.dataset.property // 获取当前点击数组元素
if (index <= 0) { // 如果是0的话,就不让点击了
return false;
}
this.data.resumeList.splice(index - 1, 0, currentItem)
this.data.resumeList.splice(index + 1, 1)
this.setData({
resumeList: this.data.resumeList,
})
},
// 下移
resumeDown(e) {
const index = e.currentTarget.dataset.index // 获取下标
// 在wxml里定义一下property
const currentItem = e.currentTarget.dataset.property // 获取当前点击数组元素
if (index == this.data.resumeList.length - 1) { // 如果是最后一项,就不让点击了
return false;
}
this.data.resumeList.splice(index + 2, 0, currentItem)
this.data.resumeList.splice(index, 1)
this.setData({
resumeList: this.data.resumeList,
})
},
【小程序】改变数组元素位置
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 闲话少说,先上Demo Github地址:https://github.com/Jerryisme/ArrayUs...
- 题目二: 2.16给定一个无穷数组A[.],其中前n个元素都是整数,且已经排好序,剩余元素均为∞。n的值未知。给出...
- 题目:有两个数组a,b, 大小都是n,数组元素的值任意,无序. 要求:通过交换a b中的元素,使数组a元素的和与数...