input type=file 값 reset 하기
2009. 6. 12. 19:49 |
### 프로그래밍/Javascript/Css/Html
input type=file의 값을 없에려고 value="" 이렇게 해봐야 소용없다. 안된다.
document.getElementById("file").select();
document.selection.clear();
이렇게 해야 없어진다.