Home > Web Front-end > HTML Tutorial > How to click the a tag to pop up the input file upload dialog box_HTML/Xhtml_Web page production

How to click the a tag to pop up the input file upload dialog box_HTML/Xhtml_Web page production

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-05-16 16:40:10
Original
1904 people have browsed it

html

复制代码
代码如下:

<div>
<a href="###">添加图片a>
<input type="file" name="image" class="hidden" value="" />
div>

css

复制代码
代码如下:

.hidden {
display: none;
}



复制代码
代码如下:

jquery
$('a').on('click', function(e) {
e.preventDefault();
$(this).closest('input[type=file]').trigger('click');
})
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