通过 iframe 元素的 location 属性对页面进行刷新,比如 the_iframe.location.reload()
慎用 iframe.
子页面直接 用div, jquery语法来自动刷新子页面, 不会造成任何破坏:
<div id='childpage'></div><script>
setInterval(function(){
$("#childpage").load("jc2.php")
}, 10000)
</script>
index.html:<iframe name="a" id="a" src="1.html"></iframe>
<br>
<iframe name="b" id="b" src="2.html"></iframe>
1.html:
<input name="aaa" type="button" onclick="top.frames['b'].location.reload()" value="刷新B窗体"/>