We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ie11下manualInvokeElementOnLoad方法报错
为节约大家的时间,无复现步骤的 ISSUE 会被关闭,提供之后再 REOPEN
manualInvokeElementOnLoad这个方法里使用了new CustomEvent('load')来生成一个load事件,看了下caniuse上的介绍,说ie11下不能new CustomEvent,需要e = document.createEvent('CustomEvent')然后e.initCustomEvent(...)
manualInvokeElementOnLoad
new CustomEvent('load')
new CustomEvent
e = document.createEvent('CustomEvent')
e.initCustomEvent(...)
The text was updated successfully, but these errors were encountered:
https://qiankun.umijs.org/zh/faq#%E5%A6%82%E4%BD%95%E7%BB%99-ie-%E6%89%93%E8%A1%A5%E4%B8%81%EF%BC%9F
Sorry, something went wrong.
No branches or pull requests
[Bug]ie11下manualInvokeElementOnLoad方法报错
What happens?
ie11下manualInvokeElementOnLoad方法报错
最小可复现仓库
为节约大家的时间,无复现步骤的 ISSUE 会被关闭,提供之后再 REOPEN
复现步骤,错误日志以及相关配置
manualInvokeElementOnLoad
这个方法里使用了new CustomEvent('load')
来生成一个load事件,看了下caniuse上的介绍,说ie11下不能new CustomEvent
,需要e = document.createEvent('CustomEvent')
然后e.initCustomEvent(...)
相关环境信息
The text was updated successfully, but these errors were encountered: