close

這邊以兩頁框為一個簡單的範例
簡單來講會分為三個網頁
分為左頁框 右頁框 及 使用兩個頁框的主要頁面
依序分為 frameLeft frameRight frame 三個頁面


frame.html

<html>
<frameset cols="350,*"> (左邊框為350,右邊為減掉350後剩餘的長度)

    <frame src="http://localhost/getData/webGui/frameLeft.php" scrolling="auto">
    <frame src="http://localhost/getData/webGui/frameRight.php" name="showframe" scrolling="auto">

</frameset>
</html>

frameLeft.html
按下左頁框後會將rightIng.php的顯示內容導入到右頁框去
<html>
<body>
        <a href="http://localhost/getData/webGui/rightIng.php" target ="showframe"></a><br />

</body>
</html>

 

frameRight.php
一開始在載入頁面時右頁框預設的字

<?php

echo "Hello";

?>
 

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 晨柚 的頭像
    晨柚

    晨柚的部落格

    晨柚 發表在 痞客邦 留言(0) 人氣()