jEasyUI,选项卡中的工具栏

时间:2014-06-26 07:57:51

标签: javascript tabs toolbar jquery-easyui

我想在选项卡中添加工具栏,但在文档中找不到任何相关内容。我理解标签基本上是一个面板。是否可以访问它并添加工具栏?

我的目标是在每个标签中都有一个工具栏,例如提交按钮,在标签中提交表单。

我使用以下代码添加标签:

 function addTab(title, url){
    if ($('#main-tabs').tabs('exists', title)){
        $('#main-tabs').tabs('select', title);
    } else {
        var content = '<iframe scrolling="auto" frameborder="0"  src="'+url+'" style="width:100%;height:100%;"></iframe>';
        $('#main-tabs').tabs('add',{
            title:title,
            content:content,
            closable:true
        });
    }
    }

提前致谢!

迈克尔

1 个答案:

答案 0 :(得分:0)

jeasyui在标签中有一个工具栏功能。这对我的目的来说已经足够了,所以我现在就继续这样做。

$('#tt').tabs({
tools:[{
    iconCls:'icon-add',
    handler:function(){
        alert('add')
    }
},{
    iconCls:'icon-save',
    handler:function(){
        alert('save')
    }
}]

});