thinkphp 3.2 还可以使用 freamset 么?

浏览:637 发布日期:2014/04/15 分类:求助交流 关键字: freamset thinkphp3.2 thinkphp 3.2
index.html 文件
<frameset rows="20%,*">
<frame name="top" src="__URL__/top" />
<frameset cols="50%,50%">
<frame name="left" src="__URL__/left" />
<frame name="right" src="__URL__/right" />
</frameset>
</frameset>

class 类文件
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller {
public function index(){

$this->display();

}

public function top(){
$this->display();
}

public function left(){
$this->display();
}

public function right(){
$this->display();
}

}

为什么输出的是一片空白,求解决!
最佳答案
评论( 相关
后面还有条评论,点击查看>>