element table表格沒有獲取勾選後的index的方法,這裏經過兩個forEach遍歷實現。數組
當selection-change事件觸發後,寫入如下代碼this
val.forEach((val, index) => {
this.tableData.forEach((v, i) => {
// id 是每一行的數據id if(val.id == v.id){
console.log(i);
}
})
})
打印出的 i 就是你要獲取的勾選的行索引值,能夠把它存到一個數組內,方便使用。spa