<frameset rows="20%,*">
<frame src="__URL__/top" name="top" /> <!--此处src的写法,含.html为静态网页不编译php文件-->
<frameset cols="20%,*">
<frame src="__URL__/left" name="left" />
<frame src="__URL__/right" name="right" />
</frameset>
</frameset><noframes></noframes>
<?php
// 本类由系统自动生成,仅供测试用途
class IndexAction extends Action{
public function index(){
$this->display();
}
function left(){
$this->display();
}
function top(){
$this->assign("admin","ljfbest");
$this->display();
}
function right(){
$this->display();
}
}
?>
本文探讨了如何使用HTML和PHP实现响应式分隔布局,通过设置frameset的rows和cols属性,实现顶部导航、左侧菜单和右侧内容区域的布局,并通过PHP类实现了页面元素的动态加载。
386

被折叠的 条评论
为什么被折叠?



