久久免精品,日本一区二区三区在线视频观看免费,亚洲电影日韩精品,亚洲综合精品网站在线观看,久久精品在线观看,日韩专区 国产精品,国产 亚洲 网红 主播,趣爱福利站APP超污导航,久久这里只有精品国产精品99,国产精品无码AV私拍,中国男同A片,国产精品无遮挡,成年女人永久免费视频深情网

13700000000
  • 當(dāng)前位置:
  • 首頁(yè) > 
  • 在JavaScript中實(shí)現(xiàn)Tab效果

在JavaScript中實(shí)現(xiàn)Tab效果

發(fā)布時(shí)間:2023年07月08日 20:08:55 作者:piikee  瀏覽數(shù):732

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Tab效果</title>

    <style>

        .tab-content {

            display: none;

        }


        .active-tab {

            display: block;

        }


        .tab-button {

            cursor: pointer;

            padding: 10px;

            border: 1px solid #ccc;

            border-radius: 5px;

            margin: 5px;

        }

    </style>

</head>

<body>


<div>

    <div onclick="showTab('tab1')">Tab 1</div>

    <div onclick="showTab('tab2')">Tab 2</div>

    <div onclick="showTab('tab3')">Tab 3</div>


    <div id="tab1" class="tab-content active-tab">

        <h2>內(nèi)容1</h2>

        <p>這是Tab 1的內(nèi)容。</p>

    </div>

    <div id="tab2">

        <h2>內(nèi)容2</h2>

        <p>這是Tab 2的內(nèi)容。</p>

    </div>

    <div id="tab3">

        <h2>內(nèi)容3</h2>

        <p>這是Tab 3的內(nèi)容。</p>

    </div>

</div>


<script>

    function showTab(tabId) {

        // 隱藏所有tab內(nèi)容

        var tabs = document.getElementsByClassName('tab-content');

        for (var i = 0; i < tabs.length; i++) {

            tabs[i].classList.remove('active-tab');

        }


        // 顯示當(dāng)前點(diǎn)擊的tab內(nèi)容

        var selectedTab = document.getElementById(tabId);

        if (selectedTab) {

            selectedTab.classList.add('active-tab');

        }

    }

</script>


</body>

</html>


關(guān)鍵詞: