您现在的位置是:首页 > 电脑技术查询 > web开发

怎么做到每N秒自动刷新一次iframe

编辑:chaxungu时间:2022-10-02 23:20:25分类:web开发

如何做到每N秒自动刷新一次iframe?
不要叫我在iframe里的页面加meta啊。

------解决方案--------------------
<iframe name= "xxx " src= "http://www.126.com "> </iframe>
function abc(){
document.frames[ "xxx "].location.reload();
}
setInterval( "abc() ",3000);