在Extjs中一个js文件如何调用另外一个js文件中的方法

2024-12-14 21:15:09
推荐回答(1个)
回答1:

把index1.js 中的onReady 去掉,
把index1.js改成
function index1() {
var accordion = new Ext.Panel( {
region : 'west',
margins : '5 0 5 5',
split : true,
layout : 'accordion',
collapsible: true,
title: '导航',
iconCls: "dh",
xtype: 'treepanel',
width: 200,
autoScroll: true,
split: false
});
}
最后jsp中引用俩个文件,index1要在index前


在index.js中直接调用index1() 就可以调到了。