删除数组特定的值

   this.expertNameList.splice(this.expertNameList.indexOf(name),1);

this.expertNameList是数组
name,为要删除的值
1删除的个数

你可能感兴趣的:(删除数组特定的值)