我们目前正在使用VBulletin 3.6,它在admin中的iframe中加载公共页面(例如。成员个人资料,登录者等)。
我们最近完成了对我们网站的重新设计,出于某种原因,IE8在兼容性或非兼容性模式下将不再通过iframe加载管理中的公共网站。管理员在firefox和chrome中运行良好。
以下是代码的精简版,它将我们的公共网站加载到iframe中。它在Firefox中工作正常,但我不能为我的生活让它在IE8中工作。任何帮助,将不胜感激。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html dir="ltr" lang="en">
<head>
<script type="text/javascript">
</script>
<title>IFRAME Test</title>
</head>
<frameset framespacing="0" border="0" frameborder="0" frameborder="no" border="0">
<frame src="http://www.cardschat.com" name="nav" scrolling="yes" frameborder="0" marginwidth="0" marginheight="0" border="no" />
</frameset>
<noframes>
<body>
<p>Your browser does not support frames. Please get one that does!</p>
</body>
</noframes>
</html>
答案 0 :(得分:0)
您的代码运行正常。问题似乎是由您引用的网站引起的(http://www.cardschat.com)。也许他们有一个阻止这种请求的脚本。
答案 1 :(得分:0)
是否收到标题中的X-Frame-Options选项?如果是这样,iframe将不会加载内容。
有关详情,请访问:https://developer.mozilla.org/en/The_X-FRAME-OPTIONS_response_header