window.parent.document.location.href="xxxx.html", 给你一个例子,我做的。parent.html:<html>
<div style="height:200px; width:400px; border: solid red 1px;">在下面输入框中输入内容,然后点击refresh parent,将会看到复窗口被刷新<BR />
<input type="text" />
</div>
<iframe src="child.html" width="300" height="400"></iframe>
</html>
child.html:<script>
function refreshParent(){
window.parent.document.location.href="parent.html";
}
</script>
<input type="button" value="refresh parent" onclick="refreshParent();"/>