|
楼主 |
发表于 2016-5-31 16:57:57
|
显示全部楼层
续上var id = "";
//if(url.indexOf("=")!=-1){
// id = url.substring(url.indexOf("=")+1);
//}else{
id = createTabId(subtitle);
//}
window.top.addTabs({id:id,title:subtitle,close: true,url: url});
}else{
if (icon == '') {
icon = 'icon folder';
}
window.top.$.messager.progress({
text : '页面加载中....',
interval : 300
});
window.top.$('#maintabs').tabs({
onClose : function(subtitle, index) {
window.top.$.messager.progress('close');
}
});
if (window.top.$('#maintabs').tabs('exists', subtitle)) {
window.top.$('#maintabs').tabs('select', subtitle);
if (url.indexOf('isHref') != -1) {
window.top.$('#maintabs').tabs('update', {
tab : window.top.$('#maintabs').tabs('getSelected'),
options : {
title : subtitle,
href:url,
//content : '<iframe src="' + url + '" frameborder="0" style="border:0;width:100%;height:99.4%;"></iframe>',
closable : true,
icon : icon
}
});
}else {
window.top.$('#maintabs').tabs('update', {
tab : window.top.$('#maintabs').tabs('getSelected'),
options : {
title : subtitle,
content : '<iframe src="' + url + '" frameborder="0" style="border:0;width:100%;height:99.4%;"></iframe>',
//content : '<iframe src="' + url + '" frameborder="0" style="border:0;width:100%;height:99.4%;"></iframe>',
closable : true,
icon : icon
}
});
}
} else {
if (url.indexOf('isHref') != -1) {
window.top.$('#maintabs').tabs('add', {
title : subtitle,
href:url,
closable : true,
icon : icon
});
}else {
window.top.$('#maintabs').tabs('add', {
title : subtitle,
content : '<iframe src="' + url + '" frameborder="0" style="border:0;width:100%;height:99.4%;"></iframe>',
closable : true,
icon : icon
});
}
}
}
} |
|