typescript 数组中的上一个下一个元素
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 数组中的上一个下一个元素相关的知识,希望对你有一定的参考价值。
onSelect(event){
console.log('selected student',event);
this.currentStudent = event.item;
}
onPrevious(curentStudentId){
console.log(curentStudentId)
this.students.forEach((student,index) => {
if(curentStudentId>0){
this.previosStudent = this.students[curentStudentId-1];
this.currentStudent = this.previosStudent;
}
});
}
onNext(curentStudentId){
this.students.forEach((student,index) => {
if(curentStudentId<this.students.length-1){
this.nextStudent = this.students[curentStudentId+1];
this.currentStudent = this.nextStudent;
}
});
}
}
以上是关于typescript 数组中的上一个下一个元素的主要内容,如果未能解决你的问题,请参考以下文章
如何访问 for 循环中的上一个/下一个元素?
数组第一个,最后一个元素操作
JS/JQuery获取当前元素的上一个/下一个兄弟级元素等元素的方法
jQuery ui可排序如何更改表结构中的上一个/下一个项目位置
指针和数组
TypeScript 中的递归函数 - 父数组