【发布时间】:2010-09-23 14:38:36
【问题描述】:
<iframe data="/localfile.html" type="text/html" width="200" height="200"></iframe>
<iframe data="http://example.com/remotefile.html" type="text/html" width="200" height="200"></iframe>
<object data="/localfile.html" type="text/html" width="200" height="200"></object>
<object data="http://example.com/remotefile.html" type="text/html" width="200" height="200"></object>
在除 IE 之外的所有浏览器下,所有 4 个测试都有效。在 IE 6 和 7 下,最后一个失败并显示一个空框架。 有没有一种解决方法可以让 IE 在对象中加载外部 html?
【问题讨论】:
-
对于 IE8/9 另见问题stackoverflow.com/questions/8565409/…
-
不要使用 Object 而不是 IFrame stackoverflow.com/questions/924946/…
标签: html internet-explorer iframe cross-browser cross-domain