PHP 分页 刷新问题
<html>
<frameset rows="50%,50%,25%">
<frame src="frame_b.htm">
<frame src="frame_c.php">
</frameset>
</html>
以上代码是a.html文件的代码
这是整个框架。我想完成的功能是 如何在frame_b.php进行操作以后 刷新的是整个页面
[解决办法]
header("Location:a.html");#这样跳过去的页面满足不了吗?
[解决办法]
window.parent.parent.location.href
[解决办法]
parent.location.href
[解决办法]
parent.location.href='url'