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

EasyUI - Tabs 选项卡标签

时间:2015-10-13 17:13:30      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

基本效果:

效果图:

技术分享

 

html代码:

<div id="tab">
    <div title="tab1" >
        <p>tab1</p>
    </div>
    <div title="tab2">
        <p>tab2</p>
    </div>
    <div title="tab3">
        <p>tab3</p>
    </div>
</div>

 

JS代码:

$(function () {
    $(#tab).tabs({
        width:400,//
        height: 200,//
    })
})

 

 

左右调换选项卡:

效果:

技术分享

 

HTML代码:

<div id="tab">
    <div title="tab1" >
        <p>tab1</p>
    </div>
    <div title="tab2">
        <p>tab2</p>
    </div>
    <div title="tab3">
        <p>tab3</p>
    </div>
</div>

 

JS代码:

$(function () {
    $(#tab).tabs({
        width:400,//
        height: 200,//
        tabWidth: 200,//设置选项卡按钮的款
        tabheigth: 50,//设置选项卡按钮的高
    })
})

 

 

右上角图标:

效果:

技术分享

 

html代码:

<div id="tab">
    <div title="tab1" >
        <p>tab1</p>
    </div>
    <div title="tab2">
        <p>tab2</p>
    </div>
    <div title="tab3">
        <p>tab3</p>
    </div>
</div>

 

JS代码:

$(function () {
    $(#tab).tabs({
        width:400,//
        height: 200,//
        selected:1,//初始化选择哪个选项卡
        tools: [{
            iconCls: icon-add,
            handler: function () {
                alert("add");
            }
        }, {
            iconCls: icon-search,
            handler: function () {
                alert("search");
            }
        }]
    })
})

 

 

添加新选项卡:

效果:

技术分享

 

html代码:

<div id="tab">
    <div title="tab1" >
        <p>tab1</p>
    </div>
    <div title="tab2">
        <p>tab2</p>
    </div>
    <div title="tab3">
        <p>tab3</p>
    </div>
</div>

 

JS代码:

$(function () {
    $(#tab).tabs({
        width:400,//
        height: 200,//
        selected: 0,//初始化选择哪个选项卡
        tools: [{
            iconCls: icon-add,
            handler: function () {
                $(#tab).tabs(add,{
                    title: 新添加,
                    content: 新内容,
                    closable: true,//是否显示删除按钮
                })
            }
        }]
    })
})

 

取消选项卡时提示是否关闭:

效果:
技术分享

------------------------------------------------------------

技术分享

-------------------------------------------------------------

技术分享

 

html代码:

  • 要有关闭按钮data-options ="closable:true"
<div id="tab">
    <div title="tab1" >
        <p>tab1</p>
    </div>
    <div title="tab2" data-options ="closable:true">
        <p>tab2</p>
    </div>
    <div title="tab3">
        <p>tab3</p>
    </div>
</div>

 

JS代码:

$(function () {
    $(#tab).tabs({
        width:400,//
        height: 200,//
        selected: 0,//初始化选择哪个选项卡
        tools: [{
            iconCls: icon-add,
            handler: function () {
                $(#tab).tabs(add,{
                    title: 新添加,
                    content: 新内容,
                    closable: true,//是否显示删除按钮
                })
            }
        }],
        onBeforeClose: function (title, index) {//判断是否关闭
            var target = this;
            $.messager.confirm(确认, 你确认想要关闭 + title, function (r) {
                if (r) {
                    var opts = $(target).tabs(options);
                    var bc = opts.onBeforeClose;
                    opts.onBeforeClose = function () { };  // 允许现在关闭
                    $(target).tabs(close, index);
                    opts.onBeforeClose = bc;  // 还原事件函数
                }
            });
            return false;    // 阻止关闭
        }
    })
})

 

EasyUI - Tabs 选项卡标签

标签:

原文地址:http://www.cnblogs.com/KTblog/p/4874768.html

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