Home > Web Front-end > JS Tutorial > HTML upload control deselect_javascript skills

HTML upload control deselect_javascript skills

WBOY
Release: 2016-05-16 17:40:55
Original
1432 people have browsed it

JS code

The first type: (cannot be used when display:none)

Copy code The code is as follows:

var obj = document.getElementById('fileupload');
obj.select();
document.execCommand("delete");

The second type: (can be used regardless of display:none or block)

Copy code The code is as follows:

var obj = document.getElementById('fileupload') ;
obj.outerHTML=obj.outerHTML;
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template