Home  >  Article  >  Web Front-end  >  Use JS to clear the path value of the File control_javascript skills

Use JS to clear the path value of the File control_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:29:55914browse

If you use .net control, you can call the reset method, but if you use html control, you can only use js to solve it.

The method is to wrap a span in the outer layer of the file and reset the html value in the span

Copy the code The code is as follows:

var html=document.getElementById('uploadSpan').innerHTML;
document.getElementById('uploadSpan').innerHTML=html;
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn