Plugin - Easy UI - Tab

 

        <div class="easyui-tabs" id="centerTab" fit="true" border="false">
            <div title="欢迎页" style="padding:5px; overflow:hidden;">
                欢迎使用本系统
            </div>
        </div>

 

 

<script>
    function addTab(tabId, title, url) {
        var tabs=$('#centerTab');
        if (tabs.tabs('exists', title)) {
            tabs.tabs('select', title);
        } else {
            tabs.tabs('add', {
                title: title,
                closable: true,
                cache: false,
                //注:使用iframe即可防止同一个页面出现js和css冲突的问题
                content: '<iframe frameborder="0" src="' + url + '" scrolling="true" style="width:100%; height:99%"></iframe>',
            });
        }
    }
</script>

 

posted @ 2015-03-10 13:08  `Laimic  阅读(119)  评论(0)    收藏  举报