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

2020-07-16 10:06:34

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如何實現點選左邊導航右邊跳轉到對應頁面的詳細內容,更多請關注TW511.COM其它相關文章!