<html>   
<head>
</head>
<frameset rows="20%,80%">
<frame name=top src="top.html">
<frame name=bottom src="bottom.html">
</frameset>
</html>
这是top帧窗口的代码
<input type="button" value="刷新"
onclick="parent.frames.bottom.location.reload()">这是bottom帧窗口的代码
<script>
window.location.href="http://www.qq.com"; 
</script>为什么我点击top帧窗口内的刷新,bottom帧窗口并不执行重新装载的效果啊?