记录一下,dojo tabContainer 引入 iframe的方法

前端之家收集整理的这篇文章主要介绍了记录一下,dojo tabContainer 引入 iframe的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
lang.setObject("demo.addTabiFrame",function(tabContainer,href,title,closable){ if (typeof tabContainer === "string"){ tabContainer = registry.byId(tabContainer); } var tabName = "tab" + demo.basename(href,".action"),tab = registry.byId(tabName); console.log(tabName); if (typeof tab === "undefined"){ tab = new ContentPane({ id: tabName,title: title,closable: closable,executeScripts:true,style: "padding: 0;" }); tab.setContent(" <iframe style='width:100%;height:100%;border:1px' border=1 src='"+href+"'></iframe>"); tabContainer.addChild(tab); } tabContainer.selectChild(tab); }); 原文链接:https://www.f2er.com/dojo/291042.html

猜你在找的Dojo相关文章