function updateTab(title, url)
    {
        var tab = $('#tt').tabs('getSelected');
        $("#tt").tabs('update',{
            tab: tab,
            options: {
                title: title
                closable: true,
                href: url
            }
        });
    } 
标题是变了。可是内容没有加载进来。这是什么原因?