我对extJs和JavaScript都很陌生。我的javaScript代码中出现错误。我创建了一个ExtJs按钮并为其分配了一个处理程序。处理程序创建一个ExtJs messageBox。问题是,单击该按钮时,不会创建messageBox。当我使用Chrome进行调试时出现此错误:
“Uncaught TypeError:Object function getElementById(){[native code]}没有方法'addEventListener'”
我已经四处寻找但到目前为止一无所获。以下是代码:
var fBtn1 = new Ext.Button({
text: 'Forward',
tooltip: 'Send this message to more recipients',
handler : getBox
});
function getBox() {
Ext.MessageBox.confirm('hello', 'how is it');
}