程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> ThinkPHP後台首頁index使用frameset時的注意事項分析,thinkphpframeset

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

編輯:關於PHP編程

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頁面代碼如下:

 <frameset rows="20%,*">
  <frame src="__URL__/top" name="top">
  <frameset cols="20%,*">
   <frame src="__URL__/left" name="left">
   <frame src="__URL__/right" name="right">
  </frameset>
 </frameset>

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" 即可實現點擊左側鏈接.右側頁面跳轉的效果...
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved