带有 GWT 应用程序的 Chrome 框架空白页
如果直接在安装了 Chrome Frame 的 IE8 上打开网页 (urlX) 就可以了。 (我可以看到上下文菜单,就像在 Chrome 中一样)。
如果打开另一个 web (y),其中包含一段 js 代码,如
...
function inici(){
ifitxamd.location.replace(urlX);
}
...
<body class='dtvc_info_fons' onLoad='inici()' >
<iframe name='ifitxamd' width="100%" height="100%" frameborder="no" scrolling="auto" marginheight="0" marginwidth="0"></iframe>
</body>
“此新页面已加载,但没有 GWT 应用程序启动”。它也没有像 Chrome 那样的上下文菜单,所以它就像 Chrome 框架一样,没有加载。
有什么想法吗?谢谢。
If opening a web (urlX) directly on IE8 with Chrome Frame installed all is ok. (i can see context menu as if I were in chrome).
If opening another web (y) which have piece of js code like
...
function inici(){
ifitxamd.location.replace(urlX);
}
...
<body class='dtvc_info_fons' onLoad='inici()' >
<iframe name='ifitxamd' width="100%" height="100%" frameborder="no" scrolling="auto" marginheight="0" marginwidth="0"></iframe>
</body>
This new page is loaded but no GWT application starts. It also hasn't context menu like chrome, so it's like chrome frame it's not loading.
Any Idea? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Chrome 内嵌框架仅针对顶级内容运行 。除非
iframe
的父级已由 Chrome 内嵌框架渲染,否则无法使用 Chrome 内嵌框架加载iframe
内容Chrome Frame only runs for top-level content. There is no way to load
iframe
content with Chrome Frame unless the parent of theiframe
is already rendered by Chrome Frame