ThinkPHP後台首頁index使用frameset時的注意事項分析,thinkphpframeset_PHP教程

來源:互聯網
上載者:User

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標籤在多視窗程序設計中有著廣泛的應用,尤其是在項目後台頁...

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.