JavaScript面向对象-实现tab切换

页面中有多个选项卡,采用面向对象的方式实现. 代码简洁,有效减少代码冗余,便于后期维护

JavaScript面向对象-实现tab切换_第1张图片
Paste_Image.png

大家可以在这个基础上根据需求进行扩展,将数据做成动态的...直接上代码吧!

html 页面结构:

![](img/001.png)
![](img/002.png)
![](img/003.png)
![](img/003.png)
![](img/002.png)
![](img/001.png)

css 样式

#container1 div{
        width : 400px;
        height: 260px;
        display: none;
    }
    #container2 {
        margin-top:10px;
    }
    #container2 div{
        width : 400px;
        height: 260px;
        display: none;
    }

js实现功能

//Tab构造函数
        function Tab(containerId,obj){
            //外部容器
            this.container = document.getElementById(containerId);
            //tab按钮
            this.aInput = this.container.getElementsByTagName('input');
            //放置对应内容
            this.aDiv = this.container.getElementsByTagName('div');
            //切换后当前input背景色
            this.ChangeTabBgc = obj.ChangeTabBgc;
            //切换后当前input字体颜色
            this.ChangeTabColor = obj.ChangeTabColor;
        }

        Tab.prototype.init = function(){
            this.DefaultStyle();
        }
        Tab.prototype.DefaultStyle = function () {
            // 设置默认显示
            this.aInput[0].style.backgroundColor = this.ChangeTabBgc;
            this.aDiv[0].style.display = 'block';
            // 缓存实例对象
            var that = this;
            // 绑定单击事件
            for (var i = 0; i < this.aInput.length; i++) {
                this.aInput[i].index = i;
                this.aInput[i].onclick = function(){
                    // 实现样式切换功能
                    // 这里的this是点击的按钮
                    that.change(this);
                }
            }
        }
        //点击事件触发后内部处理
        Tab.prototype.change = function(obj){
            //清除所有样式
            for (var i = 0; i < this.aInput.length; i++) {
                this.aInput[i].style.color = "";
                this.aInput[i].style.backgroundColor = '';
                this.aDiv[i].style.display = 'none';
            }
            //当前选中的标签和显示内容设置样式
            obj.style.backgroundColor = this.ChangeTabBgc;
            this.aDiv[obj.index].style.display = 'block';
            obj.style.color = this.ChangeTabColor;
        }

js实例化选项卡对象

 var tab1 = new Tab('container1',{
            ChangeTabBgc:'yellowgreen',
            ChangeTabColor:"#fff",
         });
 tab1.init();
 var tab2 = new Tab('container2',{
         ChangeTabBgc:'purple',
         ChangeTabColor:"#fff",
    });
tab2.init();

好了,我们已经初步完成了选项卡功能了,如果需要扩展功能,直接在原型上添加方法即可...

你可能感兴趣的:(JavaScript面向对象-实现tab切换)