当前位置: 代码迷 >> PHP >> PHP 分页 刷新有关问题
  详细解决方案

PHP 分页 刷新有关问题

热度:402   发布时间:2016-04-29 01:08:18.0
PHP 分页 刷新问题
<html>
<frameset rows="50%,50%,25%">
<frame src="frame_b.htm">
<frame src="frame_c.php">
</frameset>
</html>
以上代码是a.html文件的代码

这是整个框架。我想完成的功能是 如何在frame_b.php进行操作以后 刷新的是整个页面


------解决方案--------------------
PHP code
header("Location:a.html");#这样跳过去的页面满足不了吗?
------解决方案--------------------
window.parent.parent.location.href
------解决方案--------------------
parent.location.href
------解决方案--------------------
parent.location.href='url'
  相关解决方案