在调试ExtJS程序时,在firefox和chrome上都能显示,但一到IE上就报错,后来从左下角的JS报错提示中才发现,原来是JS代码中多加了个逗号。
menu: {
items: [{
text: '员工添加',
iconCls: 'user',
handler: this.createWindowSave,
scope: this
}, {
text: '员工管理',
iconCls: 'user',
handler: this.createWindow,
scope: this
},//该处多一个逗号
]
}