gpt4 book ai didi

html - 重新加载页面时 <iframe> 的奇怪行为

转载 作者:搜寻专家 更新时间:2023-10-31 08:45:05 24 4
gpt4 key购买 nike

我在同一目录中有三个简单的 HTML 文件:

index.html

    <html>
<head>
<title>Page 1</title>
</head>
<body>
<iframe src="page2.html"></iframe>
</body>
</html>

page2.htmlpage3.html(大致相同的内容)

    <html>
<head>
<title>Page 2</title>
</head>
<body>
This is the content of page 2
</body>
</html>


<html>
<head>
<title>Page 3</title>
</head>
<body>
This is the content of page 3
</body>
</html>

index.html 包含一个 <iframe>指向另外两个 HTML 文件之一。

当我加载 index.html第一次,它按预期工作并打印“This is the content of page 2”。但是当我改变 src属性为“page3.html”,并重新加载页面,没有任何变化。它一直告诉我“这是第 2 页的内容”,即使它应该加载第 3 页。

但是,当我关闭选项卡并重新打开页面 (index.html) 时,它会工作并打印“这是第 3 页的内容”。但是当我将它改回 page2.html 时,它会停留在第 3 页。

这很奇怪。我猜浏览器正在缓存页面或类似的东西。

当我添加时:

<script>
document.write(document.querySelector("iframe").src);
</script>

然后,它打印出正确的文件位置。 (但是iframe的内容还是错误的。)

这意味着即使浏览器检测到文件已更改,它甚至不会重新加载 iframe当页面重新加载时。

什么会导致这种奇怪的行为?我该如何解决?

谢谢。

附言使用 Firefox 29 测试。

附言(2) 所有文件都在我的 PC 上,我不会在远程服务器上获取它们。

最佳答案

尝试添加如下内容:

 document.getElementById(FrameID).contentDocument.location.reload(true);

这会强制 iframe 在每次重新加载页面时重新加载。

编辑:我使用 Chrome 进行了尝试,即使没有脚本,它也能正常工作。

关于html - 重新加载页面时 &lt;iframe&gt; 的奇怪行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23485001/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com