is read-only, you can only cancel the selection through other methods. There are two methods here."/> is read-only, you can only cancel the selection through other methods. There are two methods here.">

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

HTML upload control deselect_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:40:551463browse

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;
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