由于使用display:none来设置的隐藏,每次刷新后对应的id为filePicker的div的宽高都默认为1px,按钮当然没有反应,网上找了很多具体都说不要使用display:none,使用css样式来设置。以下语句即解决了此问题。
<style>
#filePicker div:nth-child(2){width:100%!important;height:100%!important;}
</style>
原文:https://www.cnblogs.com/nanju/p/10089070.html