Home  >  Article  >  Web Front-end  >  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

WBOY
WBOYOriginal
2016-05-16 16:40:101792browse

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');
})
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