How to click on the a tag to pop up the input file upload dialog box

How to click on the a tag to pop up the input file upload dialog box
html

Copy code
The code is as follows:

<SPAN class=tag><<SPAN class=title>div</SPAN>></SPAN>
<SPAN class=tag><<SPAN class=title>a</SPAN> <SPAN class=attribute>href</SPAN>=<SPAN class=value>"###"</SPAN>></SPAN>Add image<SPAN class=tag></<SPAN class=title>a</SPAN>></SPAN>
<SPAN class=tag><<SPAN class=title>input</SPAN> <SPAN class=attribute>type</SPAN>=<SPAN class=value>"file"</SPAN> <SPAN class=attribute>name</SPAN>=<SPAN class=value>"image"</SPAN> <SPAN class=attribute>class</SPAN>=<SPAN class=value>"hidden"</SPAN> <SPAN class=attribute>value</SPAN>=<SPAN class=value>""</SPAN> /></SPAN>
<SPAN class=tag></<SPAN class=title>div</SPAN>></SPAN>

CSS

Copy code
The code is as follows:

<SPAN class=class>.hidden</SPAN> <SPAN class=rules>{
<SPAN class=rule><SPAN class=attribute>display</SPAN>:<SPAN class=value> none;</SPAN></SPAN>
<SPAN class=rule>}</SPAN></SPAN>


Copy code
The code is as follows:

jQuery
$('a').on('click', function(e) {
e.preventDefault();
$(this).closest('input[type=file]').trigger('click');
})

<<:  Detailed explanation of the difference between in and exists in MySQL

>>:  Solution to overflow:hidden failure in CSS

Recommend

Solve the problem of yum installation error Protected multilib versions

Today, when installing nginx on the cloud server,...

Vue implements the magnifying glass effect of tab switching

This article example shares the specific code of ...

Detailed explanation of Linux index node inode

1. Introduction to inode To understand inode, we ...

Analysis of the reasons why Vue3 uses Proxy to implement data monitoring

Vue data two-way binding principle, but this meth...

Tomcat maxPostSize setting implementation process analysis

1. Why set maxPostSize? The tomcat container has ...

Common attacks on web front-ends and ways to prevent them

The security issues encountered in website front-...

Detailed explanation of the basic usage of the img image tag in HTML/XHTML

The image tag is used to display an image in a we...

Detailed explanation of asynchronous programming knowledge points in nodejs

Introduction Because JavaScript is single-threade...

How to use pdf.js to preview pdf files in Vue

When we preview PDF on the page, some files canno...

What codes should I master when learning web page design?

This article introduces in detail some of the tech...

Let's deeply understand the event object in js

We know that the commonly used events in JS are: ...