原生选项卡

<style>
    .tab-menu {
        overflow: hidden;
        height: 3em;
        background-color: white;
    }

    .tab-menu ul {
        overflow: hidden;
        list-style: none;
        padding-left: 0px
    }

    .tab-menu li {

        font-size: 1.2em;
        text-align: center;
        display: block;
        width: 49%;
        float: left
    }

    ul li:first-Child {
        border-right: 2px solid #EFEFF4;
    }

    .tab-box div {
        display: none;
    }

    .tab-box div:first-Child {
        display: block;
    }

    .change {
        color: #FF6600;
    }
</style>
<div class="tab">
    <div class="tab-menu">
        <ul>
            <li class="change">可用</li>
            <li>历史</li>
        </ul>
    </div>
    <div class="tab-box">
        <div> 123</div>
        <div>456</div>
        <div>789</div>
    </div>
</div>
<script type="text/javascript" src="../../assets/sbv2/js/jquery.min.js"></script>

<script>var app = new Framework7();</script>
<script>
    $().ready(function () {
        $(".tab-menu li").click(function () {
            //通过 .index()方法获取元素下标,从0开始,赋值给某个变量
            var _index = $(this).index();
            //让内容框的第 _index 个显示出来,其他的被隐藏
            $(".tab-box>div").eq(_index).show().siblings().hide();
            //改变选中时候的选项框的样式,移除其他几个选项的样式
            $(this).addClass("change").siblings().removeClass("change");
        });
    });
</script>

  • 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、付费专栏及课程。

余额充值