码迷,mamicode.com
首页 > Web开发 > 详细

html file input onchage没有调用(两次选择同一个文件)

时间:2020-07-09 15:26:03      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:input   需要   sel   value   一个   调用   code   style   file   

在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 =

html file input onchage没有调用(两次选择同一个文件)

标签:input   需要   sel   value   一个   调用   code   style   file   

原文地址:https://www.cnblogs.com/graphics/p/13273558.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!