Upload File with one button

后端 未结 2 2016
萌比男神i
萌比男神i 2021-02-08 07:11

How can I make a button in the html you need to send files that allow you to select the file and then sending it on the page that I want without using a button to select the fil

2条回答
  •  轮回少年
    2021-02-08 07:57

    You should use

    HTML

    more info: http://www.w3.org/wiki/HTML/Elements/input/file

    Jquery

    $("#file").onchange(function () {
     $("#form").submit();
    });
    

提交回复
热议问题