In JavaScript can I make a “click” event fire programmatically for a file input element?

前端 未结 28 1969
囚心锁ツ
囚心锁ツ 2020-11-21 06:29

I\'d like to make a click event fire on an tag programmatically.

Just calling click() doesn\'t seem to do anything or at lea

28条回答
  •  庸人自扰
    2020-11-21 07:07

    It works :

    For security reasons on Firefox and Opera, you can't fire the click on file input, but you can simulate with MouseEvents :

    
    
    
    

提交回复
热议问题