码迷,mamicode.com
首页 > 其他好文 > 详细

多tab点击切换

时间:2018-07-27 18:05:39      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:ali   套餐   click   center   border   display   height   小练习   就是   

现在来一个小练习,就是用js实现多tab之间的切换:

<body>
        <ul id="tab">
            <li id="tab1">10元套餐</li>
            <li id="tab2">20元套餐</li>
            <li id="tab3">30元套餐</li>
        </ul>
        <div id="container">
            <div id="content1">
                10元套餐详情:<br/>&nbsp;每月套餐内拨打100分钟,超出部分2毛/分钟
            </div>
            <div id="content2" style="display: none">
                30元套餐详情:<br/>&nbsp;每月套餐内拨打300分钟,超出部分1.5毛/分钟
            </div>
            <div id="content3" style="display: none">
                50元包月详情:<br/>&nbsp;每月无限量随心打
            </div>
        </div>
    </body>

对应的css格式如图:

<style type="text/css">
            * {
                margin: 0;
                padding: 0;
            }
            
            #tab>li {
                float: left;
                list-style: none;
                width: 80px;
                height: 40px;
                text-align: center;
                line-height: 40px;
                cursor: pointer;
                border: 1px gray solid;
                border-collapse: collapse;
            }
            
            #tab>li:nth-child(1) {
                border-top-left-radius: 10px;
                border-bottom-left-radius: 10px;
            }
            
            #tab>li:nth-last-child(1) {
                border-top-right-radius: 10px;
                border-bottom-right-radius: 10px;
            }
            
            #content1,
            #content2,
            #content3 {
                width: 300px;
                height: 100px;
                padding: 30px;
                position: absolute;
                top: 40px;
                left: 0px;
                border-radius: 10px;
            }
            
            #tab1,
            #content1 {
                background: orangered;
            }
            
            #tab2,
            #content2 {
                background: pink;
            }
            
            #tab3,
            #content3 {
                background: deeppink;
            }
        </style>

效果图:

技术分享图片

js实现的结果:

<script src="../../../js/jquery-1.10.1.js" type="text/javascript" charset="utf-8"></script>
    <script type="text/javascript">
        $(function() {

            var currentindex = 0;
            var $contents = $("#container>div");
            $("#tab>li").click(function() {
                $contents[currentindex].style.display = "none";
                var index = $(this).index();
                $contents[index].style.display = "block";
                currentindex = index;
            })

        })
    </script>

可以实现正常的切换了。

 

多tab点击切换

标签:ali   套餐   click   center   border   display   height   小练习   就是   

原文地址:https://www.cnblogs.com/caicaihong/p/9378902.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!