Trigger mode is used to achieve file-type input. The file selection dialog box _ HTML/Xhtml _ webpage creation does not need to be clicked.

Source: Internet
Author: User
You can use the trigger method to achieve this without clicking the file-type input pop-up file selection dialog box. Because javascript does not have a native trigger function, you have written one by yourself, if you like it, you can refer to the trigger method. javascript does not have a native trigger function. You can write one by yourself or directly use jquery to implement it:

The Code is as follows:


Var button1 = document. getElementById ("button1 ");
Var button2 = document. getElementById ("button2 ");
Button1.onclick = function () {alert ("button1"); trigger (button2, "onclick ");}
Button2.onclick = function () {alert ("button2 ");}
Function trigger (ele, event)
{Ele [event] ();}


You can also use a simpler method, that is, overwrite the input to the image to be clicked, hyperlink, or other p, and set the input to completely transparent, in this way, when you click an image, the input is actually clicked as follows:

The Code is as follows:




Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.