日期:2014-05-17 浏览次数:20711 次
??? var Test= new Ext.Panel({
??????? id:Test_panel',
????????title:'业务地图',
????????listeners: {activate: handleTestActivate},
??????? margins:'5 0 0 5',//up right down left
??????? html:'<iframe id="mapTro" src="/Test.html" width="100%" height="100%" frameborder="0" scrolling="auto"></iframe>'
????????? });
?
如上所示:
src设置本地html在页面上无法显示。
?
------------------------------------?
解决方案:如果无法加载html文件,在Panel里面加入属性
??????? frame: true,
??????? frameHeader: true,//这个好像不是必须的
就可以正常引入Test.html,路径根据实际情况定