首頁 >後端開發 >PHP問題 >php如何實現點選左邊導航右邊跳到對應頁面

php如何實現點選左邊導航右邊跳到對應頁面

Guanhui
Guanhui原創
2020-05-08 13:22:384313瀏覽

php如何實現點選左邊導航右邊跳到對應頁面

php如何實現點擊左邊導航右邊跳到對應頁面

首先在頁面的左邊設定多個a標籤作為導航;然後在頁面的右邊新增一個iframe,其屬性name設定為content;最後將左側所使用的a標籤的屬性target,設定為content即可。

範例程式碼:

<!DOCTYPE HTML>
<html>
    <head>
        <meta charset="utf-8" />
        <title>实现点击左边导航右边跳转到对应页面</title>
    </head>
    <body>
        <!-- 左侧菜单 -->
        <div class="left">
            <a href="http://www.baidu.com" target="content">百度</a>
            <a href="http://www.qq.com" target="content">qq</a>
        </div>
        <!-- 右侧页面 -->
        <div class="right">
            <iframe src="" name="content"></iframe>
        </div>
    </body>
</html>

推薦教學:《PHP教學

以上是php如何實現點選左邊導航右邊跳到對應頁面的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn