您好,登錄后才能下訂單哦!
在ThinkPHP項目中使用frameset時需要注意哪些問題?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
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/來調用模板。
看完上述內容,你們掌握在ThinkPHP項目中使用frameset時需要注意哪些問題的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。