easyui tabs

Posted 秋明小司机丶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easyui tabs相关的知识,希望对你有一定的参考价值。

$("#mainAccrdion table a").click(function () {
    $("#mainAccrdion table td").css("background-image", "none");
    $(this).parent().css("background-image", "url(/Content/img/home_index_td_backgroud.bmp)");
    var url = $(this).attr("url");
    var title = $(this).text();
    addPanel(title, url);
})


function addPanel(title, url) {
    if ($("#mainTabs").tabs("exists", title)) {
        $("#mainTabs").tabs("select", title)
        //当前tab  
        var current_tab = $(‘#mainTabs‘).tabs(‘getSelected‘);
        $(‘#mainTabs‘).tabs(‘update‘, {
            tab: current_tab,
            options: {
                content: ‘<iframe scrolling="auto" frameborder="0"  src="‘ + url + ‘" style="width:100%;height:100%;"></iframe>‘,
                //或者 href : ‘‘;  
            }
        });
    }
    else {
        $("#mainTabs").tabs("add", {
            title: title,
            closable: true,
            content: "<iframe id=‘winfrm‘ src=‘" + url + "‘ frameborder=‘0‘ scrolling=‘auto‘ style=‘width: 100%; height: 100%‘></iframe>"
        })
    }
}

 

以上是关于easyui tabs的主要内容,如果未能解决你的问题,请参考以下文章

easyui获取当前选中的tabs

一个基于 EasyUI 的前台架构封装操作Tabs的JS代码

jQuery EasyUI 中文API Layout(Tabs)

easyui是否有很多bug呀,tab注册事件onBeforeClose

关于jquery easyUi中打不开tabs的问题,求大神搭救!!!

jQueryeasyui的easyui-tabs相互嵌套问题,图中MMMM包含了 abcd区域 其中bd区域为空闲区,现在我只想要ac