你是怎么嵌入的啊  用iframe ,还是load()?

解决方案 »

  1.   


            $(function () {
                $('#treeMenu').tree({
                     //url: 'Handler1.ashx',
                    url: 'GetMenuHandle.ashx',
                    method: 'get',
                    animate: true,
                    checkbox: false,                onClick: function (node) {
                        if (node.attributes && node.attributes.url) {//存在href配置
                            var exists = $('#centerTab').tabs('exists', node.text); //判断是否存在tab,不存在添加,存在则选取这个tab
                            $('#centerTab').tabs(exists ? 'select' : 'add', exists ? node.text : { title: node.text, href: node.attributes.url, closable: true });
                        }
                    }
                });
            }); 
      

  2.   

    $('#platformtabs').tabs(
    'add',
    {
    id : 'welcome000000',
    title : '欢迎',
    content : '<iframe id="welcome000000" height="100%" width="100%" src="' + url1
    + '" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="no"  style="overflow-y:scroll;"  allowtransparency="yes"></iframe>',
    closable : true,
    selected : true
    });你在这样加载内容。 
      

  3.   

    content string 这个选项卡面板内容。  
    href string 一个URL加载远程内容填充选项卡面板。 
      

  4.   

    content 后边加个div字符串 也可以啊  之后配置一个url  那你看看API.