试过pop方法,但是pop只能移除最后一个,我希望点击上传列表,移除选中的那个列表图片
花猫阳
- 发布:2015-05-07 15:58
- 更新:2016-07-02 22:21
- 阅读:1517
图片上传的files[]怎么移除里面的元素?
分类:HTML5+
1 个回复
一刀大叔
var files = [];
//增加元素
files.push({
name: "uploadkey" + index,
path: p,
id:"img"+index
});
var num = this.id; //获取点击该标签的值
for (var temp = 0 ; temp < files.length; temp ++) {
if (files[temp].id === num ) {
files.splice(num,1); //删除选中的图片
}
}