ThinkPHP後台首頁index使用frameset時的注意事項分析,thinkphpframeset
html的frameset標籤在多視窗程序設計中有著廣泛的應用,尤其是在項目後台頁面部分。本文就來分析ThinkPHP後台首頁index使用frameset時的注意事項。具體如下:
檔案路徑:aoli/admin/Lib/Action/IndexAction.class.php
代碼如下:
<?php class IndexAction extends Action{ public function index(){ $this->display(); } public function top(){ $this->display(); } public function left(){ $this->display(); } public function right(){ $this->display(); } }?>
檔案路徑:aoli/admin/Tpl/default/Index
index.html頁面代碼如下:
top.html(略)
left.html(略)
right.html(略)
注意事項:
調用top.html,left.html,right.html的時候應該用路徑__URL__/來調用方法,而不能用__TMPL__/Index/來調用模板。
感興趣的讀者可以調試運行本文樣本,體會路徑調用的具體用法。
thinkphp313顯示頁不可以使用frameset?
class IndexAction extends SessionAction {
//系統首頁
public function index(){
$this->display();
}
......
}這種寫法沒有問題嗎?
我記得不都是下面這個寫法(⊙_⊙)?
class IndexAction extends Action {
//系統首頁
public function index(){
$this->display();
}
....
}
PHP使用frameset製作後台介面時,怎實現通過操作左邊架構,使右邊架構中的頁面跳轉?
frameset 裡會有個右面架構的 name (假設值為: rframe)
在左邊架構的連結中. 添加一個 target="rframe" 即可實現點擊左側連結.右側頁面跳轉的效果...
http://www.bkjia.com/PHPjc/868232.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/868232.htmlTechArticleThinkPHP後台首頁index使用frameset時的注意事項分析,thinkphpframeset html的frameset標籤在多視窗程序設計中有著廣泛的應用,尤其是在項目後台頁...