Ext.Loader.loadScript({
url : './a-path/testController.js',
onLoad : onLoad('loaded'),
onError : onError
});
我还使用面板添加了一个外部html文件:
var myTestPanel = Ext.create('Ext.panel.Panel', {
title : 'Example 1',
width : 250,
height : 250,
frame : true,
loader: {
url: './test.html',
renderer: 'html',
autoLoad: true,
scripts: true
}
})
问题是“如何在外部html文件中使用加载的脚本?”