html file input onchage没有调用(两次选择同一个文件)
在html中,如果input的类型是file,且第二次选择的文件与第一次相同,那么onchange事件不会调用。
如果想调用,需要将event.target.value设置为null,如下:
原生写法:
<input id="file" onchange="file_changed(this)" onclick="this.value=null;" type="file" accept="*/*" />
React写法:
<input className="input_tag" type="file" accept="image/*" onChange={onImageSelect}/>
const onImageSelect = (event: any) => { const files = event.target.files; event.target.value = ''; };
= The End =
作者:zdd
出处:http://www.cnblogs.com/graphics/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.