js实现选项卡功能

2020-12-13 02:59

阅读:355

标签:style   blog   class   code   java   c   

实现原理:

点击按钮时,改变选项卡中的class和改变div的style.display

 

 

1、选项卡的头部

soscw.com,搜素材
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html xmlns="http://www.w3.org/1999/xhtml">
head>
meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
title>无标题文档title>
style type="text/css">
    input{ background:#fff;}
    .active{ background:red;}
style>
head>
body>
input  type="button" value="1" class="active"/>
input  type="button" value="2"/>
input  type="button" value="3"/>
body>
script type="text/javascript">
    var aBtn = document.getElementsByTagName("input");
    var i = 0;
    for(i=0;iaBtn.length;i++){
        aBtn[i].onclick = function(){
            //当点击某个按钮时,先将所有的按钮中的class清空(这里清空的事active)
            for(i=0;iaBtn.length;i++){
                aBtn[i].className = ‘‘;
            }
            this.className = active;/*this代表被点击的那个按钮,被点击的那个按钮加上active这个class*/
        };
    }
script>
html>
soscw.com,搜素材

 

 

2、完成这个效果的实现:

soscw.com,搜素材
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html xmlns="http://www.w3.org/1999/xhtml">
head>
meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
title>无标题文档title>
style type="text/css">
    input{ background:#fff;}
    .active{ background:red;}
    
    div{ width:200px; height:200px; background-color:#ccc; display:none;}
style>
head>
body>
input  type="button" value="1" class="active"/>
input  type="button" value="2"/>
input  type="button" value="3"/>

div style="display:block;">111div>
div>222div>
div>333div>
body>
script type="text/javascript">
    var aBtn = document.getElementsByTagName("input");
    var oDiv = document.getElementsByTagName("div");
    var i = 0;
    for(i=0;iaBtn.length;i++){
        aBtn[i].index=i;//给所有的按钮加上索引值
        aBtn[i].onclick = function(){
            //当点击某个按钮时,先将所有的按钮中的class清空(这里清空的事active)
            for(i=0;iaBtn.length;i++){
                aBtn[i].className = ‘‘;
                oDiv[i].style.display=none;
            }
            //alert(this.index);
            oDiv[this.index].style.display="block";
            this.className = active;/*this代表被点击的那个按钮,被点击的那个按钮加上active这个class*/
        };
    }
script>
html>
soscw.com,搜素材

 

js实现选项卡功能,搜素材,soscw.com

js实现选项卡功能

标签:style   blog   class   code   java   c   

原文地址:http://www.cnblogs.com/LO-ME/p/3721942.html


评论


亲,登录后才可以留言!