html+css+js原生选项卡

1.tab部分可以根据不同标签来改变背景图片或背景色的不同。

示例如下:

话不多说,直接上代码。

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta http-equiv="X-UA-Compatible" content="IE=edge">

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

    <title>Document</title>

    <style>

        .tab {

            overflow: hidden;

            border: 1px solid #ccc;

        }

        .tab button {

            float: left;

            border: none;

            outline: none;

            cursor: pointer;

            padding: 14px 16px;

        }

        .tabcontent {

            display: none;

            padding: 6px 12px;

            border: 1px solid #ccc;

            border-top: none;

        }

        .tabcontentblock {

            display: block;

        }

        .tablinksactive {

            background: blue;

            color: #ffffff;

        }

        .activeone {

            background: red;

            color: #ffffff;

        }

        .activetwo {

            background: #333;

            color: #ffffff;

        }

        .active {

            background: blue;

            color: #ffffff;

        }

    </style>

</head>

<body>

    <div class="tab">

        <button class="tablinks tablinksactive" οnclick="openTab(event, 'tab1',0)">选项卡1</button>

        <button class="tablinks" οnclick="openTab(event, 'tab2',1)">选项卡2</button>

        <button class="tablinks" οnclick="openTab(event, 'tab3',2)">选项卡3</button>

    </div>

    <div id="tab1" class="tabcontent tabcontentblock">

        <p>这是选项卡1的内容。</p>

    </div>

    <div id="tab2" class="tabcontent">

        <p>这是选项卡2的内容。</p>

    </div>

    <div id="tab3" class="tabcontent">

        <p>这是选项卡3的内容。</p>

    </div>

</body>

<script>

    function openTab(evt, tabName, index) {

        var i, tabcontent, tablinks;

        console.log(tabName)

        tabcontent = document.getElementsByClassName("tabcontent");

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

            tabcontent[i].style.display = "none";

        }

        tablinks = document.getElementsByClassName("tablinks");

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

            //判断当前点击的Tab元素下标,替换相对应的Class名

            if (index == 0) {

                tablinks[i].className = tablinks[i].className.replace("tabactive", "");

                tablinks[i].className = tablinks[i].className.replace("active", "");

            } else if (index == 1) {

                tablinks[i].className = tablinks[i].className.replace("active", "");

                tablinks[i].className = tablinks[i].className.replace("activeone", "");

            } else if (index == 2) {

                tablinks[i].className = tablinks[i].className.replace("activeone", "");

                tablinks[i].className = tablinks[i].className.replace("activetwo", "");

            }

        }

        document.getElementById(tabName).style.display = "block"; //展示相对应的元素

        // 判断当前Tab下标,添加相对应的class名称

        if (index == 0) {

            evt.currentTarget.className += " active";

        } else if (index == 1) {

            evt.currentTarget.className += " activeone";

        } else if (index == 2) {

            evt.currentTarget.className += " activetwo";

        }

    }

</script>

</html>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,下面是一个简单的JavaScript原生选项卡实现: HTML部分: ```html <div class="tab"> <button class="tablinks" onclick="openTab(event, 'tab1')">Tab 1</button> <button class="tablinks" onclick="openTab(event, 'tab2')">Tab 2</button> <button class="tablinks" onclick="openTab(event, 'tab3')">Tab 3</button> <div id="tab1" class="tabcontent"> <h3>Tab 1 Content</h3> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> </div> <div id="tab2" class="tabcontent"> <h3>Tab 2 Content</h3> <p>Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p> </div> <div id="tab3" class="tabcontent"> <h3>Tab 3 Content</h3> <p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.</p> </div> </div> ``` CSS部分: ```css .tab { overflow: hidden; border: 1px solid #ccc; background-color: #f1f1f1; } .tab button { background-color: inherit; float: left; border: none; outline: none; cursor: pointer; padding: 14px 16px; transition: 0.3s; } .tab button:hover { background-color: #ddd; } .tab button.active { background-color: #ccc; } .tabcontent { display: none; padding: 6px 12px; border: 1px solid #ccc; border-top: none; } ``` JavaScript部分: ```javascript function openTab(evt, tabName) { var i, tabcontent, tablinks; tabcontent = document.getElementsByClassName("tabcontent"); for (i = 0; i < tabcontent.length; i++) { tabcontent[i].style.display = "none"; } tablinks = document.getElementsByClassName("tablinks"); for (i = 0; i < tablinks.length; i++) { tablinks[i].className = tablinks[i].className.replace(" active", ""); } document.getElementById(tabName).style.display = "block"; evt.currentTarget.className += " active"; } ``` 解释: 通过 HTML 中的按钮元素和对应的内容区域,通过 JavaScript 的事件监听实现点击按钮显示对应的内容区域的功能。其中,openTab 函数接收两个参数,分别是事件对象 evt 和对应的选项卡名称 tabName。在函数内部,通过循环遍历所有内容区域和按钮元素,将它们的样式 display 设为 none,将所有按钮元素的类名中的 active 替换为空格。然后再将对应的内容区域样式 display 设为 block,将对应的按钮元素的类名中加上 active 样式,以示当前选中状态。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值