css iframe不显示更新的html页面

bksxznpy  于 2023-03-24  发布在  其他
关注(0)|答案(2)|浏览(150)

当我编辑链接到的html页面时,指向html页面的iframe链接没有在带有iframe的页面上更新。

<div style="position: fixed; left:151; top:232;height:542px;width:826px;overflow:auto;background-color:#ff5a93">
<iframe src="indexsub.html" width="826" height="542" frameborder="0" scrolling="yes" name="frame" id="mainframe"></iframe>
</div>

这是我正在使用的代码,我复制并粘贴到其他两个页面,他们似乎更新罚款,我不知道的问题。

1tuwyuhd

1tuwyuhd1#

你可以在JS代码中添加一个刷新iframe的函数:

function Refresh(){
var iframe = document.getElementById("IFRAME ID");
iframe.src = "NAME/LOCATION OF THE FILE";
}
rta7y2nd

rta7y2nd2#

您可以尝试不断刷新作为iframe发布的页面。
indexsub.html内联

setTimeout(() => {
  document.location.reload();
}, 3000);

相关问题