function addPanel(url, title) {

    if ($("#mainTabs").tabs("exists", title)) {

        $("#mainTabs").tabs("select", title);

        //var tab = $('#mainTabs').tabs('getSelected');  // 获取选择的面板tab.panel('refresh', 'get_content.php');

        //刷新当前选择页面

        var current_tab = $('#mainTabs').tabs('getSelected');

        $('#mainTabs').tabs('update', {

            tab: current_tab,

            options: {

                content: '<iframe frameborder="0" height="100%"  width="100%" src="' + url + '" style="overflow:hidden" ></iframe>'

            }

        });

    }

    else {

 

        $('#mainTabs').tabs('add', {

            title: title,

            content: '<iframe frameborder="0" height="100%"  width="100%" src="' + url + '" style="overflow:hidden" ></iframe>',

            closable: true

        });

    }

}

相关文章:

  • 2022-12-23
  • 2021-11-30
  • 2022-12-23
  • 2021-07-15
  • 2021-12-05
  • 2021-10-12
  • 2021-11-04
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-05-25
  • 2021-11-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案