Microsoft Edge 不显示 <iframe>
Microsoft Edge not displaying <iframe>
我有一个按钮可以创建一个新选项卡并加载一些简单的 HTML 和一个带有数据 URI 的 iframe。新选项卡打开,我可以使用导航工具 (F12) 看到所有这些都显示在 DOM 中。但是,Iframe 不会显示在 Edge 浏览器中。我收到错误HTTP404: NOT FOUND - The server has not found anything matching the requested URI (Uniform Resource Identifier).
下图显示 DOM 并且一切都按预期加载。
这可能是您的问题:MSDN data Protocol。
For security reasons, data URIs are restricted to downloaded resources. Data URIs cannot be used for navigation, for scripting, or to populate frame or iframe elements.
我有一个按钮可以创建一个新选项卡并加载一些简单的 HTML 和一个带有数据 URI 的 iframe。新选项卡打开,我可以使用导航工具 (F12) 看到所有这些都显示在 DOM 中。但是,Iframe 不会显示在 Edge 浏览器中。我收到错误HTTP404: NOT FOUND - The server has not found anything matching the requested URI (Uniform Resource Identifier).
下图显示 DOM 并且一切都按预期加载。
这可能是您的问题:MSDN data Protocol。
For security reasons, data URIs are restricted to downloaded resources. Data URIs cannot be used for navigation, for scripting, or to populate frame or iframe elements.