首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

父页面刷新Iframe如何只刷新一次 求解

2013-10-23 
父页面刷新Iframe怎么只刷新一次求解function myrefresh(){iframe_content.location.reload(true)} setTi

父页面刷新Iframe怎么只刷新一次 求解
function myrefresh()
{

iframe_content.location.reload(true);



setTimeout('myrefresh()',1000); //指定1秒刷新一次

</script>

<iframe id="iframe_content" onload="checkCookie()" src="chatForm.html" style="width:700px;  height:400px; overflow:hidden; border:none;"></iframe>

checkCookie()是另一个函数  不做考虑
Iframe?刷新
[解决办法]
function myrefresh()
{

iframe_content.location.reload(true);
setTimeout('myrefresh()',1000); 


或者用
setInterval()
[解决办法]
setTimeout 就是一次性的定时器,要么循环用,要么用另一个 setInterval。

热点排行