Delay after clicking file-upload button?

前端 未结 3 1472
一向
一向 2021-01-12 23:53

When I click on \"Select File to Upload\" (i.e. input type=file) there is a delay between the time I clicked the button and selected the file to displaying selected file nex

3条回答
  •  遥遥无期
    2021-01-13 00:57

    This is what I got to work: HTML:

    
    

    Javascript/ Jquery:

    $(".fileUploadBtn").click(function() {
    //Your code here to show please wait
    $('input[type=file]').change(function(e){
    // Your code here to hide please wait
    });
    

提交回复
热议问题