• tab标签页


    <!DOCTYPE html>
    <html>
    <head>
    <title>tab标签页</title>
    <meta charset="utf-8">
    <style type="text/css">
    ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    }
    ul li{
    float: left;
    margin-right: 10px;
    }
    #tab_con{
    clear: left;
    margin-top: 15px;
    }
    .active{
    background: #333;
    color: #fff;
    }
    .one{
    100%;
    height: 200px;
    background: #f00;
    }
    .two{
    100%;
    height: 200px;
    background: #0f0;
    display: none;
    }
    .three{
    100%;
    height: 200px;
    background: #00f;
    display: none;
    }
    </style>
    </head>
    <body>
    <ul id="tab_nav">
    <li class="active">tab1</li>
    <li>tab2</li>
    <li>tab2</li>
    </ul>
    <div id="tab_con">
    <div class="one">内容1</div>
    <div class="two">内容2</div>
    <div class="three">内容3</div>
    </div>
    </body>
    <script type="text/javascript">
    var tab=document.getElementById('tab_nav').children;
    var con=document.getElementById('tab_con').children;
    for(var i=0;i<tab.length;i++){
    qh(i);
    }
    function qh(n){
    tab[n].onclick=function(){
    for(var j=0;j<con.length;j++){
    con[j].style.display="none";
    tab[j].className="";
    }
    con[n].style.display="block";
    tab[n].className="active";
    }
    }
    </script>
    </html>
  • 相关阅读:
    exchange 2010 数据库管理
    windows Sql server performance monitor
    windows powershell
    开始Dev之路
    配置adb环境
    android当中安装androidstudio时问题
    进阶之旅(一)
    ubuntu 下配置Android环境
    Android开发中的设计模式
    android anr之后如何导出traces.txt
  • 原文地址:https://www.cnblogs.com/bingjiebeibei/p/9355297.html
Copyright © 2020-2023  润新知