Trigger file input dialog

前端 未结 8 2039
忘了有多久
忘了有多久 2021-02-13 04:31

How can I auto trigger file input? ie. in the link below I want to trigger upload button on load

DEMO

8条回答
  •  时光说笑
    2021-02-13 04:55

    $("document").ready(function() {
        setTimeout(function() {
            $("#test1").trigger('click');
        },10);
    
        $('#test1').click(function(){
            alert('hii');
        })
    });
    

    click event triggerd.

    http://jsfiddle.net/j9oL4nyn/1/

提交回复
热议问题