我有一个index.html和另外两个iframe页面(top.html和menu.html)。 这是index.html
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<!-- Add jQuery library -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Add fancyBox main JS and CSS files -->
<script type="text/javascript" src="https://raw.githubusercontent.com/fancyapps/fancyBox/master/source/jquery.fancybox.js"> </script>
<body>
<iframe name="toppage" src="../topmenu/top.html" align="top" width="100%" height="240"> </iframe>
<iframe name="menupage" src="../topmenu/menu.html" align ="left" width="350" height="70%"></iframe>
</body>
</html>
top.html和菜单页面非常简单。只是屏幕上的文字。
在Chrome中运行正常。但是当我在IE8中加载index.html并点击F5时,菜单页面将刷新并变为首页。
我在索引标题中删除了两个脚本命令,它工作正常。使用iframe和Fancybox有什么限制吗?