IE8:提交事件永远不会被Extjs 4捕获

IE8 : submit event never catch by Extjs 4

本文关键字:Extjs 捕获 提交 事件 永远 IE8      更新时间:2023-09-26

我们在IE 8和标准HTML表单的提交事件中有一个错误。我们使用这个代码:

Ext.get('formulaire').on('submit', function() {
    console.log("submit event launched");
    // blabla
});

使用Firefox,当我提交"formulaire"表单时,事件会被触发,我可以运行一些代码。使用IE,事件永远不会被触发,或者我的回调函数永远不会被调用。

有没有办法让它与IE 8一起工作?(它是我们应用程序的目标)。

控制台将在IE 8中抛出错误,因此注释

console.log("submit event launched");

并使用代码

Ext.get('formulaire').on('submit', function() {

});