input file 添加图片预览 绑定onchange执行函数 重复添加不执行onchange函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input file 添加图片预览 绑定onchange执行函数 重复添加不执行onchange函数相关的知识,希望对你有一定的参考价值。

问题描述:

input file上传图片 绑定了onchange执行函数,是在选择的图片发生变化时才会触发onchange的函数。当我们添加图片并预览时,遇到添加同一张图片或者,添加后删除再添加同一张图片时,不会触发onchange事件。

 

解决方法:

1.在执行的onchange里的函数最后重新生成一段input file html代码替换掉原来的input file

 

  $(‘#cFile‘).replaceWith(‘<input type="file" id="cFile" accept="image/*"  multiple  onchange="javascript:setImagePreview1();" style="filter:alpha(opacity=0);    opacity:0;width:30px;height:30px;position: absolute;left: 0px; overflow: hidden;"/> ‘)

 

 

 

2.写个函数绑定input file 的click事件

技术分享

 

以上是关于input file 添加图片预览 绑定onchange执行函数 重复添加不执行onchange函数的主要内容,如果未能解决你的问题,请参考以下文章

input实现多文件上传及图片预览

input file图片上传预览

使用input选择本地图片,并且实现预览功能

Input File选择图片后,未保存预览

input file图片上传预览js实现

input[type='file']样式美化及实现图片预览