报错原因:1、将webupload的上传按钮 进行了隐藏 例如 设置了 display:none;属性,
2、或是在vue项目中 当前按钮元素或父级元素上 用了 v-show,v-if ,
总结:在这种情况下 flash 会停止运行,请改用以下方式隐藏:
给需要隐藏的元素,加类名代替display:none 属性。
(例如:添加类名:.hiddenBtn,添加css{
  width:0px;
  height:0px;
  overflow:hidden;
})
这里css可以用其他方式,position隐藏都可以 只要不使用 display:none;就好。

 

相关文章:

  • 2021-10-07
  • 2022-12-23
  • 2022-12-23
  • 2021-08-20
  • 2021-12-05
  • 2022-12-23
  • 2022-01-05
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-05
  • 2021-12-18
  • 2021-06-26
  • 2021-07-26
相关资源
相似解决方案