Solve the problem that input[type="file"] cannot upload the same image continuously


input在上传图片的时候,会出现不支持连续上传同一张图片的情况。解决方法:在上传完成操作之后使input的value值清空,在onchange事件和删除操作里面添加

$("#fileInput").val("");

这样不管是新增 还是 删除 ,就都可以支持上传同一张图片啦。


image.png

你可能感兴趣的:(Solve the problem that input[type="file"] cannot upload the same image continuously)