当前位置:班级文件 > 文件夹1 > 文件夹2 > 文件夹3 > 文件夹4
1、点击“班级文件 或 文件夹1 或 文件夹2 或 文件夹3 或 文件夹4”,删除数组中指定下标以后的值
var currentLocation = [ {id: 0,name: '班级文件'},{id: 1,name: '文件夹1'},{id: 2,name: '文件夹2'},{id: 3,name: '文件夹3'},{id: 4,name: '文件夹4'} ]
var thisIndex = e.currentTarget.dataset.index;//获取点击的下标
currentLocation.splice(thisIndex + 1, currentLocation.length - 1);
2、点击“班级文件”,同时删除了“文件夹1、文件夹2、文件夹3、文件夹4”
var currentLocation = [ {id: 0,name: '班级文件'},{id: 1,name: '文件夹1'},{id: 2,name: '文件夹2'},{id: 3,name: '文件夹3'},{id: 4,name: '文件夹4'} ]
currentLocation.splice(1, currentLocation.length);
网友评论