Answers for "how to clear the value of input type file in react js"

3

clear input file html react

e.target.value = null;
Posted by: Guest on March-08-2020
0

How to reset ReactJS file input

<input onChange={this.onChange} onClick={e => (e.target.value = null)} type="file" />
Posted by: Guest on September-30-2021

Code answers related to "how to clear the value of input type file in react js"

Browse Popular Code Answers by Language