我的页面上有2个iframe,显示2个不同的页面。我只是想在不同的时间间隔自动刷新它们(第一页每60Sec,第二页每300Sec)。请给我一些简单而又最好的解决方案。
先谢谢
答案 0 :(得分:1)
你可以使用这样的javascript:
<script>
window.setInterval("reloadIFrame1();", 60000);
window.setInterval("reloadIFrame2();", 300000);
function reloadIFrame1() {
document.frames["frameNameHere1"].location.reload();
}
function reloadIFrame2() {
document.frames["frameNameHere2"].location.reload();
}
</script>
答案 1 :(得分:1)
试试这个: -
<script>
window.setInterval("refreshIFrame1();", 60000);
function refreshIFrame1() {
document.getElementById('FrameID1').location.reload();
}
window.setInterval("refreshIFrame2();", 300000);
function refreshIFrame2() {
document.getElementById('FrameID2').location.reload();
}
</script>