Is there an “after submit” jQuery option?

后端 未结 4 576
执笔经年
执笔经年 2020-12-03 02:31

I have a form that uploads a file and targets an iframe on the page. When the user clicks submit, I want the file contents to \"clear\" out.

I tried this

<         


        
4条回答
  •  自闭症患者
    2020-12-03 03:14

    You could do something like this:

    $('#imageaddform').submit(function(){
      setTimeout(function() {
        $('#imagefile').val('');
      },100);
    });
    

提交回复
热议问题